Home
last modified time | relevance | path

Searched refs:scopeType (Results 1 – 9 of 9) sorted by relevance

/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/reflectionmodel/
DReflectionMethodResolutionLogic.java46 … TypeSolver typeSolver, ResolvedReferenceTypeDeclaration scopeType, in solveMethod() argument
56 for (ResolvedReferenceType ancestor : scopeType.getAncestors()) { in solveMethod()
63 if (scopeType.getAncestors().isEmpty()){ in solveMethod()
75 … ResolvedReferenceTypeDeclaration scopeType, Class clazz) { in solveMethodAsUsage() argument
76 if (typeParameterValues.size() != scopeType.getTypeParameters().size()) { in solveMethodAsUsage()
78 if (!scopeType.getTypeParameters().isEmpty()) { in solveMethodAsUsage()
81 for (int i = 0; i < scopeType.getTypeParameters().size(); i++) { in solveMethodAsUsage()
90 … MethodUsage methodUsage = replaceParams(typeParameterValues, scopeType, methodDeclaration); in solveMethodAsUsage()
96 for(ResolvedReferenceType ancestor : scopeType.getAncestors()){ in solveMethodAsUsage()
105 if (scopeType.getAncestors().isEmpty()){ in solveMethodAsUsage()
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javasymbolsolver_0_6_0/expected_output/java-symbol-solver-core/
Dcom_github_javaparser_symbolsolver_reflectionmodel_ReflectionMethodResolutionLogic.txt10 …Line 56) scopeType.getAncestors() ==> com.github.javaparser.symbolsolver.model.declarations.Refere…
16 Line 63) scopeType.getAncestors().isEmpty() ==> java.util.List.isEmpty()
17 …Line 63) scopeType.getAncestors() ==> com.github.javaparser.symbolsolver.model.declarations.Refere…
25 Line 76) scopeType.getTypeParameters().size() ==> java.util.List.size()
26 …Line 76) scopeType.getTypeParameters() ==> com.github.javaparser.symbolsolver.model.declarations.T…
27 Line 78) scopeType.getTypeParameters().isEmpty() ==> java.util.List.isEmpty()
28 …Line 78) scopeType.getTypeParameters() ==> com.github.javaparser.symbolsolver.model.declarations.T…
29 Line 81) scopeType.getTypeParameters().size() ==> java.util.List.size()
30 …Line 81) scopeType.getTypeParameters() ==> com.github.javaparser.symbolsolver.model.declarations.T…
37 …Line 90) replaceParams(typeParameterValues, scopeType, methodDeclaration) ==> com.github.javaparse…
[all …]
Dcom_github_javaparser_symbolsolver_javaparsermodel_TypeExtractor.txt181 …Line 392) scopeType.isReferenceType() ==> com.github.javaparser.symbolsolver.model.typesystem.Type…
182 …Line 393) scopeType.asReferenceType().useThisTypeParametersOnTheGivenType(result) ==> com.github.j…
183 …Line 393) scopeType.asReferenceType() ==> com.github.javaparser.symbolsolver.model.typesystem.Type…
Dcom_github_javaparser_symbolsolver_javaparsermodel_TypeExtractor_J9.txt181 …Line 392) scopeType.isReferenceType() ==> com.github.javaparser.symbolsolver.model.typesystem.Type…
182 …Line 393) scopeType.asReferenceType().useThisTypeParametersOnTheGivenType(result) ==> com.github.j…
183 …Line 393) scopeType.asReferenceType() ==> com.github.javaparser.symbolsolver.model.typesystem.Type…
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/
DTypeExtractor.java393 ResolvedType scopeType = facade.getType(scope); in visit() local
394 if (scopeType.isReferenceType()) { in visit()
395 … result = scopeType.asReferenceType().useThisTypeParametersOnTheGivenType(result); in visit()
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/C/
DC.stg2677 <scopeStruct(sname=scope.name,...)>, * <scopeType(sname=scope.name,...)>;
2705 static <scopeType(sname=scope.name,...)> <scopePushName(sname=scope.name,...)>(p<name> ctx);
2706 static void ANTLR3_CDECL <scope.name>Free(<scopeType(sname=scope.name)> scope);
2736 …SCOPE_TOP(<scope.name>) = (<scopeType(sname=scope.name)>)(ctx-><scopeStack(sname=scope.name,...)>-…
2748 static <scopeType(sname=scope.name,...)> <scopePushName(sname=scope.name,...)>(p<name> ctx);
2749 static void ANTLR3_CDECL <scope.name>Free(<scopeType(sname=scope.name)> scope);
2779 …SCOPE_TOP(<scope.name>) = (<scopeType(sname=scope.name)>)(ctx-><scopeStack(sname=scope.name,...)>-…
2797 <scopeType(sname=scope.name,...)> (*<scopePushName(sname=scope.name,...)>)(struct <name>_Ctx_str…
2798 <scopeType(sname=scope.name,...)> <scopeTopDecl(sname=scope.name,...)>;
2812 <scopeType(sname=scope.name,...)> (*<scopePushName(sname=scope.name,...)>)(struct <name>_Ctx_stru…
[all …]
/external/v8/src/inspector/
Dv8-debugger-agent-impl.h226 String16 scopeType(v8::debug::ScopeIterator::ScopeType type);
Dv8-debugger-agent-impl.cc226 String16 scopeType(v8::debug::ScopeIterator::ScopeType type) { in scopeType() function
269 .setType(scopeType(iterator->GetType())) in buildScopes()
Dv8-debugger.cc721 String16 type = v8_inspector::scopeType(iterator->GetType()); in getTargetScopes()