本文整理汇总了C#中Variables.Percent方法的典型用法代码示例。如果您正苦于以下问题:C# Variables.Percent方法的具体用法?C# Variables.Percent怎么用?C# Variables.Percent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Variables
的用法示例。
在下文中一共展示了Variables.Percent方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: FinalizeProject
public override void FinalizeProject(Variables.Root variables)
{
base.FinalizeProject(variables);
JavaState state = variables.GetStateObject<JavaState>(this);
JavaGlobalInfo global = state.GlobalInfo;
// general
variables.SetVariable("javaPackages", state.PackageCount);
// imports
variables.Average("javaImportsAvg", "javaImportsTotal", "javaCodeFiles");
variables.Average("javaNamesSimpleAvg", "javaNamesSimpleTotal", "javaTypesTotal");
variables.Average("javaNamesFullAvg", "javaNamesFullTotal", "javaTypesTotal");
// identifiers
foreach(TypeIdentifier identifier in global.IdentifiersSimpleTop){
variables.AddToArray("javaNamesSimpleTop", new { package = identifier.Prefix, name = identifier.Name });
}
foreach(TypeIdentifier identifier in global.IdentifiersSimpleBottom.Reverse()){
variables.AddToArray("javaNamesSimpleBottom", new { package = identifier.Prefix, name = identifier.Name });
}
foreach(TypeIdentifier identifier in global.IdentifiersFullTop){
variables.AddToArray("javaNamesFullTop", new { package = identifier.Prefix, name = identifier.Name });
}
foreach(TypeIdentifier identifier in global.IdentifiersFullBottom.Reverse()){
variables.AddToArray("javaNamesFullBottom", new { package = identifier.Prefix, name = identifier.Name });
}
// fields and methods
variables.Average("javaClassesFieldsAvg", "javaClassesFieldsTotal", "javaClasses");
variables.Average("javaClassesConstructorsAvg", "javaClassesConstructorsTotal", "javaClasses");
variables.Average("javaClassesMethodsAvg", "javaClassesMethodsTotal", "javaClasses");
variables.Average("javaInterfacesFieldsAvg", "javaInterfacesFieldsTotal", "javaInterfaces");
variables.Average("javaInterfacesMethodsAvg", "javaInterfacesMethodsTotal", "javaInterfaces");
variables.Average("javaAnnotationsElementsAvg", "javaAnnotationsElementsTotal", "javaAnnotations");
variables.Average("javaMethodParametersAvg", "javaMethodParametersTotal", "javaMethodsTotal");
variables.SetVariable("javaMethodsReturnsTotal", state.GlobalInfo.Statements[FlowStatement.Return]);
foreach(KeyValuePair<string, int> fieldType in global.FieldTypes.ListFromTop()){
variables.AddToArray("javaFieldTypes", new { type = fieldType.Key, amount = fieldType.Value });
}
foreach(KeyValuePair<string, int> methodReturnType in global.MethodReturnTypes.ListFromTop()){
variables.AddToArray("javaMethodReturnTypes", new { type = methodReturnType.Key, amount = methodReturnType.Value });
}
foreach(KeyValuePair<string, int> methodParameterType in global.MethodParameterTypes.ListFromTop()){
variables.AddToArray("javaMethodParameterTypes", new { type = methodParameterType.Key, amount = methodParameterType.Value });
}
// enums
variables.Average("javaEnumsValuesAvg", "javaEnumsValuesTotal", "javaEnums");
// annotations
List<KeyValuePair<string, int>> annotationUses = global.AnnotationUses.ListFromTop();
int totalAnnotationsUsed = annotationUses.Sum(kvp => kvp.Value);
for(int annotationIndex = 0; annotationIndex < Math.Min(annotationUses.Count, 10); annotationIndex++){
variables.AddToArray("javaAnnotationsUsedTop", new { name = annotationUses[annotationIndex].Key, amount = annotationUses[annotationIndex].Value });
}
variables.SetVariable("javaAnnotationsUsedTotal", totalAnnotationsUsed);
variables.SetVariable("javaAnnotationsUsedOther", totalAnnotationsUsed-variables.GetVariable("javaAnnotationsUsedClasses", 0)-variables.GetVariable("javaAnnotationsUsedFields", 0)-variables.GetVariable("javaAnnotationsUsedMethods", 0));
// control flow
variables.SetVariable("javaControlFlowIf", state.GlobalInfo.Statements[FlowStatement.If]+state.GlobalInfo.Statements[FlowStatement.Else]);
variables.SetVariable("javaControlFlowFor", state.GlobalInfo.Statements[FlowStatement.For]);
variables.SetVariable("javaControlFlowEnhFor", state.GlobalInfo.Statements[FlowStatement.EnhancedFor]);
variables.SetVariable("javaControlFlowWhile", state.GlobalInfo.Statements[FlowStatement.While]);
variables.SetVariable("javaControlFlowDoWhile", state.GlobalInfo.Statements[FlowStatement.DoWhile]);
variables.SetVariable("javaControlFlowSwitch", state.GlobalInfo.Statements[FlowStatement.Switch]);
variables.SetVariable("javaControlFlowCaseTotal", state.GlobalInfo.Statements[FlowStatement.SwitchCase]);
variables.SetVariable("javaControlFlowCaseDefaultTotal", state.GlobalInfo.Statements[FlowStatement.SwitchDefault]);
variables.SetVariable("javaControlFlowCaseMin", state.GlobalInfo.MinSwitchCases);
variables.SetVariable("javaControlFlowCaseMax", state.GlobalInfo.MaxSwitchCases);
variables.Average("javaControlFlowCaseAvg", "javaControlFlowCaseTotal", "javaControlFlowSwitch");
variables.Percent("javaControlFlowCaseDefaultPerc", "javaControlFlowCaseDefaultTotal", "javaControlFlowSwitch");
variables.SetVariable("javaControlFlowTry", state.GlobalInfo.Statements[FlowStatement.Try]);
variables.SetVariable("javaControlFlowTryCatch", state.GlobalInfo.Statements[FlowStatement.TryCatch]);
variables.SetVariable("javaControlFlowTryWithResources", state.GlobalInfo.Statements[FlowStatement.TryWithResources]);
variables.SetVariable("javaControlFlowTryCatchFinally", state.GlobalInfo.TryCatchWithFinally);
variables.SetVariable("javaControlFlowTryWithResourcesFinally", state.GlobalInfo.TryWithResourcesWithFinally);
variables.Percent("javaControlFlowTryCatchFinallyPerc", "javaControlFlowTryCatchFinally", "javaControlFlowTry");
variables.Percent("javaControlFlowTryWithResourcesFinallyPerc", "javaControlFlowTryWithResourcesFinally", "javaControlFlowTry");
variables.SetVariable("javaControlFlowCatchTotal", state.GlobalInfo.Statements[FlowStatement.Catch]);
variables.SetVariable("javaControlFlowCatchMin", state.GlobalInfo.MinCatchBlocks);
variables.SetVariable("javaControlFlowCatchMax", state.GlobalInfo.MaxCatchBlocks);
//.........这里部分代码省略.........