/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/ |
D | ConstructorResolutionLogic.java | 36 …private static List<ResolvedType> groupVariadicParamValues(List<ResolvedType> argumentsTypes, int … in groupVariadicParamValues() 58 …boolean isApplicable(ResolvedConstructorDeclaration constructor, List<ResolvedType> argumentsTypes, in isApplicable() 63 …boolean isApplicable(ResolvedConstructorDeclaration constructor, List<ResolvedType> argumentsTypes, in isApplicable() 146 …List<ResolvedConstructorDeclaration> constructors, List<ResolvedType> argumentsTypes, TypeSolver t… in findMostApplicable() 156 …List<ResolvedConstructorDeclaration> constructors, List<ResolvedType> argumentsTypes, TypeSolver t… in findMostApplicable()
|
D | MethodResolutionLogic.java | 39 …private static List<ResolvedType> groupVariadicParamValues(List<ResolvedType> argumentsTypes, int … in groupVariadicParamValues() 60 …isApplicable(ResolvedMethodDeclaration method, String name, List<ResolvedType> argumentsTypes, Typ… in isApplicable() 64 …isApplicable(ResolvedMethodDeclaration method, String name, List<ResolvedType> argumentsTypes, Typ… in isApplicable() 256 …tatic boolean isApplicable(MethodUsage method, String name, List<ResolvedType> argumentsTypes, Typ… in isApplicable() 353 … String name, List<ResolvedType> argumentsTypes, TypeSolver typeSolver) { in findMostApplicable() 362 …String name, List<ResolvedType> argumentsTypes, TypeSolver typeSolver, boolean wildcardTolerance) { in findMostApplicable() 436 …tic boolean isExactMatch(ResolvedMethodLikeDeclaration method, List<ResolvedType> argumentsTypes) { in isExactMatch() 557 …MostApplicableUsage(List<MethodUsage> methods, String name, List<ResolvedType> argumentsTypes, Typ… in findMostApplicableUsage() 605 … List<ResolvedType> argumentsTypes) { in solveMethodInType() 612 … List<ResolvedType> argumentsTypes, in solveMethodInType()
|
D | SymbolSolver.java | 84 …public MethodUsage solveMethod(String methodName, List<ResolvedType> argumentsTypes, Context conte… in solveMethod() 92 … public MethodUsage solveMethod(String methodName, List<ResolvedType> argumentsTypes, Node node) { 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/resolution/ |
D | ConstructorResolutionLogic.java | 36 private static List<Type> groupVariadicParamValues(List<Type> argumentsTypes, int startVariadic, in groupVariadicParamValues() 58 … public static boolean isApplicable(ConstructorDeclaration constructor, List<Type> argumentsTypes, in isApplicable() 63 … private static boolean isApplicable(ConstructorDeclaration constructor, List<Type> argumentsTypes, in isApplicable() 147 … List<ConstructorDeclaration> constructors, List<Type> argumentsTypes, TypeSolver typeSolver) { in findMostApplicable() 156 …> findMostApplicable(List<ConstructorDeclaration> constructors, List<Type> argumentsTypes, TypeSol… in findMostApplicable()
|
D | MethodResolutionLogic.java | 44 …private static List<Type> groupVariadicParamValues(List<Type> argumentsTypes, int startVariadic, T… in groupVariadicParamValues() 65 …tic boolean isApplicable(MethodDeclaration method, String name, List<Type> argumentsTypes, TypeSol… in isApplicable() 69 …tic boolean isApplicable(MethodDeclaration method, String name, List<Type> argumentsTypes, TypeSol… in isApplicable() 264 …public static boolean isApplicable(MethodUsage method, String name, List<Type> argumentsTypes, Typ… in isApplicable() 373 …indMostApplicable(List<MethodDeclaration> methods, String name, List<Type> argumentsTypes, TypeSol… in findMostApplicable() 381 …indMostApplicable(List<MethodDeclaration> methods, String name, List<Type> argumentsTypes, TypeSol… in findMostApplicable() 444 protected static boolean isExactMatch(MethodLikeDeclaration method, List<Type> argumentsTypes) { in isExactMatch() 524 …findMostApplicableUsage(List<MethodUsage> methods, String name, List<Type> argumentsTypes, TypeSol… in findMostApplicableUsage() 570 …solveMethodInType(TypeDeclaration typeDeclaration, String name, List<Type> argumentsTypes, TypeSol… in solveMethodInType() 584 … String name, List<Type> argumentsTypes, boolean staticOnly, in solveMethodInType()
|
D | SymbolSolver.java | 82 public MethodUsage solveMethod(String methodName, List<Type> argumentsTypes, Context context) { in solveMethod() 90 public MethodUsage solveMethod(String methodName, List<Type> argumentsTypes, Node node) { 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 | 73 …default SymbolReference<ConstructorDeclaration> solveConstructor(List<Type> argumentsTypes, TypeSo… in solveConstructor() 82 …SymbolReference<MethodDeclaration> solveMethod(String name, List<Type> argumentsTypes, boolean sta… in solveMethod() 88 …default Optional<MethodUsage> solveMethodAsUsage(String name, List<Type> argumentsTypes, TypeSolve… in solveMethodAsUsage()
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/core/resolution/ |
D | Context.java | 167 …mbolReference<ResolvedConstructorDeclaration> solveConstructor(List<ResolvedType> argumentsTypes) { in solveConstructor() 176 …bolReference<ResolvedMethodDeclaration> solveMethod(String name, List<ResolvedType> argumentsTypes, in solveMethod() 185 … default Optional<MethodUsage> solveMethodAsUsage(String name, List<ResolvedType> argumentsTypes) { in solveMethodAsUsage()
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/contexts/ |
D | MethodCallExprContext.java | 74 … public Optional<MethodUsage> solveMethodAsUsage(String name, List<ResolvedType> argumentsTypes) { in solveMethodAsUsage() 90 "Method '" + name + "' with parameterTypes " + argumentsTypes); in solveMethodAsUsage() local 151 …ference<ResolvedMethodDeclaration> solveMethod(String name, List<ResolvedType> argumentsTypes, boo… in solveMethod() 167 List<ResolvedType> argumentsTypes, in solveMethodAsUsage() 386 …e> solveMethodAsUsage(ResolvedTypeVariable tp, String name, List<ResolvedType> argumentsTypes, Con… in solveMethodAsUsage() 396 …odUsage> solveMethodAsUsage(ResolvedType type, String name, List<ResolvedType> argumentsTypes, Con… in solveMethodAsUsage()
|
D | ClassOrInterfaceDeclarationContext.java | 110 …ference<ResolvedMethodDeclaration> solveMethod(String name, List<ResolvedType> argumentsTypes, boo… in solveMethod() 114 …mbolReference<ResolvedConstructorDeclaration> solveConstructor(List<ResolvedType> argumentsTypes) { in solveConstructor()
|
D | JavaParserTypeDeclarationAdapter.java | 112 …ference<ResolvedMethodDeclaration> solveMethod(String name, List<ResolvedType> argumentsTypes, boo… in solveMethod() 157 …mbolReference<ResolvedConstructorDeclaration> solveConstructor(List<ResolvedType> argumentsTypes) { in solveConstructor()
|
D | ContextHelper.java | 38 … List<ResolvedType> argumentsTypes, Context invokationContext, in solveMethodAsUsage()
|
D | ForEachStatementContext.java | 59 …bolReference<ResolvedMethodDeclaration> solveMethod(String name, List<ResolvedType> argumentsTypes, in solveMethod()
|
D | EnumDeclarationContext.java | 71 …ference<ResolvedMethodDeclaration> solveMethod(String name, List<ResolvedType> argumentsTypes, boo… in solveMethod()
|
D | ForStatementContext.java | 68 …bolReference<ResolvedMethodDeclaration> solveMethod(String name, List<ResolvedType> argumentsTypes, in solveMethod()
|
D | SwitchEntryContext.java | 82 …ference<ResolvedMethodDeclaration> solveMethod(String name, List<ResolvedType> argumentsTypes, boo… 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/javaparsermodel/contexts/ |
D | MethodCallExprContext.java | 79 …public Optional<MethodUsage> solveMethodAsUsage(String name, List<Type> argumentsTypes, TypeSolver… in solveMethodAsUsage() 95 "Method '" + name + "' with parameterTypes " + argumentsTypes); in solveMethodAsUsage() local 156 …public SymbolReference<MethodDeclaration> solveMethod(String name, List<Type> argumentsTypes, bool… in solveMethod() 209 … List<Type> argumentsTypes, TypeSolver typeSolver, in solveMethodAsUsage() 422 …l<MethodUsage> solveMethodAsUsage(TypeVariable tp, String name, List<Type> argumentsTypes, TypeSol… in solveMethodAsUsage() 432 …ptional<MethodUsage> solveMethodAsUsage(Type type, String name, List<Type> argumentsTypes, TypeSol… in solveMethodAsUsage()
|
D | ClassOrInterfaceDeclarationContext.java | 93 …public SymbolReference<MethodDeclaration> solveMethod(String name, List<Type> argumentsTypes, bool… in solveMethod() 97 …public SymbolReference<ConstructorDeclaration> solveConstructor(List<Type> argumentsTypes, TypeSol… in solveConstructor()
|
D | JavaParserTypeDeclarationAdapter.java | 86 …public SymbolReference<MethodDeclaration> solveMethod(String name, List<Type> argumentsTypes, bool… in solveMethod() 127 …public SymbolReference<ConstructorDeclaration> solveConstructor(List<Type> argumentsTypes, TypeSol… in solveConstructor()
|
D | ContextHelper.java | 47 … List<Type> argumentsTypes, TypeSolver typeSolver, in solveMethodAsUsage()
|
D | ForechStatementContext.java | 57 …public SymbolReference<MethodDeclaration> solveMethod(String name, List<Type> argumentsTypes, bool… in solveMethod()
|
D | ForStatementContext.java | 66 …public SymbolReference<MethodDeclaration> solveMethod(String name, List<Type> argumentsTypes, bool… in solveMethod()
|
/external/javaparser/javaparser-symbol-solver-logic/src/main/java/com/github/javaparser/symbolsolver/logic/ |
D | MethodResolutionCapability.java | 10 …bolReference<ResolvedMethodDeclaration> solveMethod(String name, List<ResolvedType> argumentsTypes, 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/javassistmodel/ |
D | JavassistEnumDeclaration.java | 168 …public SymbolReference<MethodDeclaration> solveMethod(String name, List<Type> argumentsTypes, bool… in solveMethod() 194 …public Optional<MethodUsage> solveMethodAsUsage(String name, List<Type> argumentsTypes, TypeSolver… in solveMethodAsUsage()
|
D | JavassistInterfaceDeclaration.java | 98 …public Optional<MethodUsage> solveMethodAsUsage(String name, List<Type> argumentsTypes, TypeSolver… in solveMethodAsUsage() 105 …public SymbolReference<MethodDeclaration> solveMethod(String name, List<Type> argumentsTypes, bool… in solveMethod()
|