/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-core/com/github/javaparser/symbolsolver/resolution/ |
D | SymbolSolver.java | 82 public MethodUsage solveMethod(String methodName, List<Type> argumentsTypes, Context context) { in solveMethod() method in SymbolSolver 83 …SymbolReference<MethodDeclaration> decl = context.solveMethod(methodName, argumentsTypes, false, t… in solveMethod() 90 public MethodUsage solveMethod(String methodName, List<Type> argumentsTypes, Node node) { in solveMethod() method in SymbolSolver 91 … return solveMethod(methodName, argumentsTypes, JavaParserFactory.getContext(node, typeSolver)); in solveMethod()
|
D | MethodResolutionLogic.java | 588 return ctx.solveMethod(name, argumentsTypes, staticOnly, typeSolver); in solveMethodInType() 592 return ctx.solveMethod(name, argumentsTypes, staticOnly, typeSolver); in solveMethodInType() 599 return ctx.solveMethod(name, argumentsTypes, staticOnly, typeSolver); in solveMethodInType() 602 …return ((ReflectionClassDeclaration) typeDeclaration).solveMethod(name, argumentsTypes, staticOnly… in solveMethodInType() 605 …return ((ReflectionInterfaceDeclaration) typeDeclaration).solveMethod(name, argumentsTypes, static… in solveMethodInType() 608 …return ((ReflectionEnumDeclaration) typeDeclaration).solveMethod(name, argumentsTypes, staticOnly); in solveMethodInType() 611 …return ((JavassistInterfaceDeclaration) typeDeclaration).solveMethod(name, argumentsTypes, staticO… in solveMethodInType() 614 …return ((JavassistClassDeclaration) typeDeclaration).solveMethod(name, argumentsTypes, staticOnly); in solveMethodInType() 617 … return ((JavassistEnumDeclaration) typeDeclaration).solveMethod(name, argumentsTypes, staticOnly); in solveMethodInType()
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/ |
D | SymbolSolver.java | 84 …public MethodUsage solveMethod(String methodName, List<ResolvedType> argumentsTypes, Context conte… in solveMethod() method in SymbolSolver 85 …SymbolReference<ResolvedMethodDeclaration> decl = context.solveMethod(methodName, argumentsTypes, … in solveMethod() 92 … public MethodUsage solveMethod(String methodName, List<ResolvedType> argumentsTypes, Node node) { in solveMethod() method in SymbolSolver 93 … return solveMethod(methodName, argumentsTypes, JavaParserFactory.getContext(node, typeSolver)); in solveMethod()
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/core/resolution/ |
D | Context.java | 176 …default SymbolReference<ResolvedMethodDeclaration> solveMethod(String name, List<ResolvedType> arg… in solveMethod() method 178 return getParent().solveMethod(name, argumentsTypes, staticOnly); in solveMethod() 186 …SymbolReference<ResolvedMethodDeclaration> methodSolved = solveMethod(name, argumentsTypes, false); in solveMethodAsUsage()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-core/com/github/javaparser/symbolsolver/javaparsermodel/contexts/ |
D | ForechStatementContext.java | 57 …public SymbolReference<MethodDeclaration> solveMethod(String name, List<Type> argumentsTypes, bool… in solveMethod() method in ForechStatementContext 58 return getParent().solveMethod(name, argumentsTypes, false, typeSolver); in solveMethod()
|
D | CatchClauseContext.java | 50 public final SymbolReference<MethodDeclaration> solveMethod( in solveMethod() method in CatchClauseContext 52 return getParent().solveMethod(name, argumentsTypes, false, typeSolver); in solveMethod()
|
D | ForStatementContext.java | 66 …public SymbolReference<MethodDeclaration> solveMethod(String name, List<Type> argumentsTypes, bool… in solveMethod() method in ForStatementContext 67 return getParent().solveMethod(name, argumentsTypes, false, typeSolver); in solveMethod()
|
D | EnumDeclarationContext.java | 69 …m.github.javaparser.symbolsolver.model.declarations.MethodDeclaration> solveMethod(String name, Li… in solveMethod() method in EnumDeclarationContext 70 … return javaParserTypeDeclarationAdapter.solveMethod(name, argumentsTypes, staticOnly, typeSolver); in solveMethod()
|
D | SwitchEntryContext.java | 77 …public SymbolReference<MethodDeclaration> solveMethod(String name, List<Type> argumentsTypes, bool… in solveMethod() method in SwitchEntryContext 78 return getParent().solveMethod(name, argumentsTypes, false, typeSolver); in solveMethod()
|
D | TryWithResourceContext.java | 79 …public SymbolReference<MethodDeclaration> solveMethod(String name, List<Type> argumentsTypes, bool… in solveMethod() method in TryWithResourceContext 80 return getParent().solveMethod(name, argumentsTypes, false, typeSolver); in solveMethod()
|
D | ClassOrInterfaceDeclarationContext.java | 93 …public SymbolReference<MethodDeclaration> solveMethod(String name, List<Type> argumentsTypes, bool… in solveMethod() method in ClassOrInterfaceDeclarationContext 94 … return javaParserTypeDeclarationAdapter.solveMethod(name, argumentsTypes, staticOnly, typeSolver); in solveMethod()
|
D | FieldAccessContext.java | 67 …public SymbolReference<MethodDeclaration> solveMethod(String name, List<Type> parameterTypes, bool… in solveMethod() method in FieldAccessContext 68 …return JavaParserFactory.getContext(getParentNode(wrappedNode), typeSolver).solveMethod(name, para… in solveMethod()
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/contexts/ |
D | EnumDeclarationContext.java | 71 …public SymbolReference<ResolvedMethodDeclaration> solveMethod(String name, List<ResolvedType> argu… in solveMethod() method in EnumDeclarationContext 72 return javaParserTypeDeclarationAdapter.solveMethod(name, argumentsTypes, staticOnly); in solveMethod()
|
D | ForEachStatementContext.java | 59 …public SymbolReference<ResolvedMethodDeclaration> solveMethod(String name, List<ResolvedType> argu… in solveMethod() method in ForEachStatementContext 61 return getParent().solveMethod(name, argumentsTypes, false); in solveMethod()
|
D | SwitchEntryContext.java | 82 …public SymbolReference<ResolvedMethodDeclaration> solveMethod(String name, List<ResolvedType> argu… in solveMethod() method in SwitchEntryContext 83 return getParent().solveMethod(name, argumentsTypes, false); in solveMethod()
|
D | CatchClauseContext.java | 54 public final SymbolReference<ResolvedMethodDeclaration> solveMethod( in solveMethod() method in CatchClauseContext 56 return getParent().solveMethod(name, argumentsTypes, false); in solveMethod()
|
D | ObjectCreationContext.java | 75 …public SymbolReference<ResolvedMethodDeclaration> solveMethod(String name, List<ResolvedType> argu… in solveMethod() method in ObjectCreationContext 76 …return JavaParserFactory.getContext(requireParentNode(wrappedNode), typeSolver).solveMethod(name, … in solveMethod()
|
D | ForStatementContext.java | 68 …public SymbolReference<ResolvedMethodDeclaration> solveMethod(String name, List<ResolvedType> argu… in solveMethod() method in ForStatementContext 70 return getParent().solveMethod(name, argumentsTypes, false); in solveMethod()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-core/com/github/javaparser/symbolsolver/core/resolution/ |
D | Context.java | 82 …SymbolReference<MethodDeclaration> solveMethod(String name, List<Type> argumentsTypes, boolean sta… in solveMethod() method 89 …SymbolReference<MethodDeclaration> methodSolved = solveMethod(name, argumentsTypes, false, typeSol… in solveMethodAsUsage()
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/declarations/ |
D | JavaParserClassDeclaration.java | 143 …public SymbolReference<ResolvedMethodDeclaration> solveMethod(String name, List<ResolvedType> para… in solveMethod() method in JavaParserClassDeclaration 145 return ctx.solveMethod(name, parameterTypes, false); in solveMethod() 290 …public SymbolReference<ResolvedMethodDeclaration> solveMethod(String name, List<ResolvedType> argu… in solveMethod() method in JavaParserClassDeclaration 292 return getContext().solveMethod(name, argumentsTypes, staticOnly); in solveMethod()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/expected_output/java-symbol-solver-core/ |
D | com_github_javaparser_symbolsolver_javaparsermodel_contexts_EnumDeclarationContext.txt | 15 …solveMethod(name, argumentsTypes, staticOnly, typeSolver) ==> com.github.javaparser.symbolsolver.j…
|
D | com_github_javaparser_symbolsolver_javaparsermodel_contexts_ForStatementContext.txt | 14 … getParent().solveMethod(name, argumentsTypes, false, typeSolver) ==> com.github.javaparser.symbol…
|
D | com_github_javaparser_symbolsolver_javaparsermodel_contexts_CatchClauseContext.txt | 13 … getParent().solveMethod(name, argumentsTypes, false, typeSolver) ==> com.github.javaparser.symbol…
|
D | com_github_javaparser_symbolsolver_core_resolution_Context.txt | 11 …Line 89) solveMethod(name, argumentsTypes, false, typeSolver) ==> com.github.javaparser.symbolsolv…
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/javaparser/contexts/ |
D | ClassOrInterfaceDeclarationContextResolutionTest.java | 349 …SymbolReference<ResolvedMethodDeclaration> ref = context.solveMethod("foo0", ImmutableList.of(), f… in solveMethodSimpleCase() 361 …SymbolReference<ResolvedMethodDeclaration> ref = context.solveMethod("foo1", ImmutableList.of(), f… in solveMethodOverrideCase() 373 …SymbolReference<ResolvedMethodDeclaration> ref = context.solveMethod("foo2", ImmutableList.of(), f… in solveMethodInheritedCase() 387 …SymbolReference<ResolvedMethodDeclaration> ref = context.solveMethod("foo3", ImmutableList.of(intT… in solveMethodWithPrimitiveParameters() 401 …SymbolReference<ResolvedMethodDeclaration> ref = context.solveMethod("foo4", ImmutableList.of(stri… in solveMethodWithMoreSpecializedParameter() 413 …SymbolReference<ResolvedMethodDeclaration> ref = context.solveMethod("foo5", ImmutableList.of(Null… in solveMethodWithAmbiguosCall()
|