Home
last modified time | relevance | path

Searched defs:argumentsTypes (Results 1 – 25 of 58) sorted by relevance

123

/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/
DConstructorResolutionLogic.java36 …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()
DMethodResolutionLogic.java39 …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()
605List<ResolvedType> argumentsTypes) { in solveMethodInType()
612List<ResolvedType> argumentsTypes, in solveMethodInType()
DSymbolSolver.java84 …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/
DConstructorResolutionLogic.java36 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()
DMethodResolutionLogic.java44 …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()
DSymbolSolver.java82 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/
DContext.java73 …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/
DContext.java167 …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/
DMethodCallExprContext.java74 … 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()
DClassOrInterfaceDeclarationContext.java110 …ference<ResolvedMethodDeclaration> solveMethod(String name, List<ResolvedType> argumentsTypes, boo… in solveMethod()
114 …mbolReference<ResolvedConstructorDeclaration> solveConstructor(List<ResolvedType> argumentsTypes) { in solveConstructor()
DJavaParserTypeDeclarationAdapter.java112 …ference<ResolvedMethodDeclaration> solveMethod(String name, List<ResolvedType> argumentsTypes, boo… in solveMethod()
157 …mbolReference<ResolvedConstructorDeclaration> solveConstructor(List<ResolvedType> argumentsTypes) { in solveConstructor()
DContextHelper.java38List<ResolvedType> argumentsTypes, Context invokationContext, in solveMethodAsUsage()
DForEachStatementContext.java59 …bolReference<ResolvedMethodDeclaration> solveMethod(String name, List<ResolvedType> argumentsTypes, in solveMethod()
DEnumDeclarationContext.java71 …ference<ResolvedMethodDeclaration> solveMethod(String name, List<ResolvedType> argumentsTypes, boo… in solveMethod()
DForStatementContext.java68 …bolReference<ResolvedMethodDeclaration> solveMethod(String name, List<ResolvedType> argumentsTypes, in solveMethod()
DSwitchEntryContext.java82 …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/
DMethodCallExprContext.java79 …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()
209List<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()
DClassOrInterfaceDeclarationContext.java93 …public SymbolReference<MethodDeclaration> solveMethod(String name, List<Type> argumentsTypes, bool… in solveMethod()
97 …public SymbolReference<ConstructorDeclaration> solveConstructor(List<Type> argumentsTypes, TypeSol… in solveConstructor()
DJavaParserTypeDeclarationAdapter.java86 …public SymbolReference<MethodDeclaration> solveMethod(String name, List<Type> argumentsTypes, bool… in solveMethod()
127 …public SymbolReference<ConstructorDeclaration> solveConstructor(List<Type> argumentsTypes, TypeSol… in solveConstructor()
DContextHelper.java47List<Type> argumentsTypes, TypeSolver typeSolver, in solveMethodAsUsage()
DForechStatementContext.java57 …public SymbolReference<MethodDeclaration> solveMethod(String name, List<Type> argumentsTypes, bool… in solveMethod()
DForStatementContext.java66 …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/
DMethodResolutionCapability.java10 …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/
DJavassistEnumDeclaration.java168 …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()
DJavassistInterfaceDeclaration.java98 …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()

123