/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-core/com/github/javaparser/symbolsolver/reflectionmodel/ |
D | ReflectionMethodResolutionLogic.java | 45 …eference<MethodDeclaration> solveMethod(String name, List<Type> parameterTypes, boolean staticOnly, in solveMethod() argument 49 …Predicate<Method> staticOnlyCheck = m -> !staticOnly || (staticOnly && Modifier.isStatic(m.getModi… in solveMethod() 57 …gic.solveMethodInType(ancestor.getTypeDeclaration(), name, parameterTypes, staticOnly, typeSolver); in solveMethod() 65 ….solveMethodInType(objectClass.getTypeDeclaration(), name, parameterTypes, staticOnly, typeSolver); in solveMethod()
|
D | ReflectionClassDeclaration.java | 134 …erence<MethodDeclaration> solveMethod(String name, List<Type> argumentsTypes, boolean staticOnly) { in solveMethod() argument 136 …Predicate<Method> staticFilter = m -> !staticOnly || (staticOnly && Modifier.isStatic(m.getModifie… in solveMethod() 145 … MethodResolutionLogic.solveMethodInType(superClass, name, argumentsTypes, staticOnly, typeSolver); in solveMethod() 151 …hodInType(interfaceDeclaration.getTypeDeclaration(), name, argumentsTypes, staticOnly, typeSolver); in solveMethod()
|
D | ReflectionEnumDeclaration.java | 155 …erence<MethodDeclaration> solveMethod(String name, List<Type> parameterTypes, boolean staticOnly) { in solveMethod() argument 156 return ReflectionMethodResolutionLogic.solveMethod(name, parameterTypes, staticOnly, 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 | JavaParserTypeDeclarationAdapter.java | 86 …claration> solveMethod(String name, List<Type> argumentsTypes, boolean staticOnly, TypeSolver type… in solveMethod() argument 89 .filter(m -> !staticOnly || (staticOnly && m.isStatic())) in solveMethod() 97 … .solveMethodInType(ancestor.getTypeDeclaration(), name, argumentsTypes, staticOnly, typeSolver); in solveMethod() 110 …on> parentSolution = context.getParent().solveMethod(name, argumentsTypes, staticOnly, typeSolver); in solveMethod()
|
D | AnonymousClassDeclarationContext.java | 44 boolean staticOnly, in solveMethod() argument 50 .filter(m -> m.getName().equals(name) && (!staticOnly || m.isStatic())) in solveMethod() 59 staticOnly, in solveMethod() 74 getParent().solveMethod(name, argumentsTypes, staticOnly, typeSolver); in solveMethod()
|
D | EnumDeclarationContext.java | 69 …claration> solveMethod(String name, List<Type> argumentsTypes, boolean staticOnly, TypeSolver type… in solveMethod() argument 70 … return javaParserTypeDeclarationAdapter.solveMethod(name, argumentsTypes, staticOnly, typeSolver); in solveMethod()
|
D | ClassOrInterfaceDeclarationContext.java | 93 …claration> solveMethod(String name, List<Type> argumentsTypes, boolean staticOnly, TypeSolver type… in solveMethod() argument 94 … return javaParserTypeDeclarationAdapter.solveMethod(name, argumentsTypes, staticOnly, typeSolver); in solveMethod()
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/reflectionmodel/ |
D | ReflectionMethodResolutionLogic.java | 45 …dMethodDeclaration> solveMethod(String name, List<ResolvedType> parameterTypes, boolean staticOnly, in solveMethod() argument 49 …Predicate<Method> staticOnlyCheck = m -> !staticOnly || (staticOnly && Modifier.isStatic(m.getModi… in solveMethod() 57 …ResolutionLogic.solveMethodInType(ancestor.getTypeDeclaration(), name, parameterTypes, staticOnly); in solveMethod() 65 …olutionLogic.solveMethodInType(objectClass.getTypeDeclaration(), name, parameterTypes, staticOnly); in solveMethod()
|
D | ReflectionClassDeclaration.java | 139 …ethodDeclaration> solveMethod(String name, List<ResolvedType> argumentsTypes, boolean staticOnly) { in solveMethod() argument 141 …Predicate<Method> staticFilter = m -> !staticOnly || (staticOnly && Modifier.isStatic(m.getModifie… in solveMethod() 155 …ation> ref = MethodResolutionLogic.solveMethodInType(superClass, name, argumentsTypes, staticOnly); in solveMethod() 161 …gic.solveMethodInType(interfaceDeclaration.getTypeDeclaration(), name, argumentsTypes, staticOnly); in solveMethod()
|
D | ReflectionEnumDeclaration.java | 164 …ethodDeclaration> solveMethod(String name, List<ResolvedType> parameterTypes, boolean staticOnly) { in solveMethod() argument 165 return ReflectionMethodResolutionLogic.solveMethod(name, parameterTypes, staticOnly, 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 | JavassistInterfaceDeclaration.java | 105 …erence<MethodDeclaration> solveMethod(String name, List<Type> argumentsTypes, boolean staticOnly) { in solveMethod() argument 107 …Predicate<CtMethod> staticOnlyCheck = m -> !staticOnly || (staticOnly && Modifier.isStatic(m.getMo… in solveMethod() 119 …ew JavassistClassDeclaration(superClass, typeSolver).solveMethod(name, argumentsTypes, staticOnly); in solveMethod() 130 …JavassistInterfaceDeclaration(interfaze, typeSolver).solveMethod(name, argumentsTypes, staticOnly); in solveMethod()
|
D | JavassistEnumDeclaration.java | 168 …erence<MethodDeclaration> solveMethod(String name, List<Type> argumentsTypes, boolean staticOnly) { in solveMethod() argument 170 …Predicate<CtMethod> staticOnlyCheck = m -> !staticOnly || (staticOnly && Modifier.isStatic(m.getMo… in solveMethod() 182 …ew JavassistClassDeclaration(superClass, typeSolver).solveMethod(name, argumentsTypes, staticOnly); in solveMethod()
|
D | JavassistClassDeclaration.java | 173 …erence<MethodDeclaration> solveMethod(String name, List<Type> argumentsTypes, boolean staticOnly) { in solveMethod() argument 175 …Predicate<CtMethod> staticOnlyCheck = m -> !staticOnly || (staticOnly && Modifier.isStatic(m.getMo… in solveMethod() 187 …ew JavassistClassDeclaration(superClass, typeSolver).solveMethod(name, argumentsTypes, staticOnly); in solveMethod() 198 …JavassistInterfaceDeclaration(interfaze, typeSolver).solveMethod(name, argumentsTypes, staticOnly); in solveMethod()
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/contexts/ |
D | AnonymousClassDeclarationContext.java | 44 boolean staticOnly) { in solveMethod() argument 49 .filter(m -> m.getName().equals(name) && (!staticOnly || m.isStatic())) in solveMethod() 58 staticOnly); in solveMethod() 72 getParent().solveMethod(name, argumentsTypes, staticOnly); in solveMethod()
|
D | JavaParserTypeDeclarationAdapter.java | 112 …ethodDeclaration> solveMethod(String name, List<ResolvedType> argumentsTypes, boolean staticOnly) { in solveMethod() argument 115 .filter(m -> !staticOnly || m.isStatic()) in solveMethod() 127 … .solveMethodInType(ancestor.getTypeDeclaration(), name, argumentsTypes, staticOnly); in solveMethod() 140 …hodDeclaration> parentSolution = context.getParent().solveMethod(name, argumentsTypes, staticOnly); in solveMethod()
|
D | EnumDeclarationContext.java | 71 …ethodDeclaration> solveMethod(String name, List<ResolvedType> argumentsTypes, boolean staticOnly) { in solveMethod() argument 72 return javaParserTypeDeclarationAdapter.solveMethod(name, argumentsTypes, staticOnly); in solveMethod()
|
D | ClassOrInterfaceDeclarationContext.java | 110 …ethodDeclaration> solveMethod(String name, List<ResolvedType> argumentsTypes, boolean staticOnly) { in solveMethod() argument 111 return javaParserTypeDeclarationAdapter.solveMethod(name, argumentsTypes, staticOnly); in solveMethod()
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/ |
D | JavassistInterfaceDeclaration.java | 108 …ethodDeclaration> solveMethod(String name, List<ResolvedType> argumentsTypes, boolean staticOnly) { in solveMethod() argument 110 …Predicate<CtMethod> staticOnlyCheck = m -> !staticOnly || (staticOnly && Modifier.isStatic(m.getMo… in solveMethod() 122 …ew JavassistClassDeclaration(superClass, typeSolver).solveMethod(name, argumentsTypes, staticOnly); in solveMethod() 133 …JavassistInterfaceDeclaration(interfaze, typeSolver).solveMethod(name, argumentsTypes, staticOnly); in solveMethod()
|
D | JavassistEnumDeclaration.java | 178 …ethodDeclaration> solveMethod(String name, List<ResolvedType> argumentsTypes, boolean staticOnly) { in solveMethod() argument 180 …Predicate<CtMethod> staticOnlyCheck = m -> !staticOnly || (staticOnly && Modifier.isStatic(m.getMo… in solveMethod() 192 …ew JavassistClassDeclaration(superClass, typeSolver).solveMethod(name, argumentsTypes, staticOnly); in solveMethod()
|
D | JavassistClassDeclaration.java | 199 …ethodDeclaration> solveMethod(String name, List<ResolvedType> argumentsTypes, boolean staticOnly) { in solveMethod() argument 201 …Predicate<CtMethod> staticOnlyCheck = m -> !staticOnly || (staticOnly && Modifier.isStatic(m.getMo… in solveMethod() 218 … .solveMethodInType(getSuperClass().getTypeDeclaration(), name, argumentsTypes, staticOnly); in solveMethod() 227 staticOnly); 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 | MethodResolutionLogic.java | 584 … String name, List<Type> argumentsTypes, boolean staticOnly, in solveMethodInType() argument 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 …eturn ((ReflectionClassDeclaration) typeDeclaration).solveMethod(name, argumentsTypes, staticOnly); in solveMethodInType() 605 …n ((ReflectionInterfaceDeclaration) typeDeclaration).solveMethod(name, argumentsTypes, staticOnly); in solveMethodInType() 608 …return ((ReflectionEnumDeclaration) typeDeclaration).solveMethod(name, argumentsTypes, staticOnly); in solveMethodInType() 611 …rn ((JavassistInterfaceDeclaration) typeDeclaration).solveMethod(name, argumentsTypes, staticOnly); 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-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/expected_output/java-symbol-solver-core/ |
D | com_github_javaparser_symbolsolver_javaparsermodel_contexts_JavaParserTypeDeclarationAdapter.txt | 46 …s().stream().filter(m -> m.getName().equals(name)).filter(m -> !staticOnly || (staticOnly && m.isS… 47 …s().stream().filter(m -> m.getName().equals(name)).filter(m -> !staticOnly || (staticOnly && m.isS… 60 …solveMethodInType(ancestor.getTypeDeclaration(), name, argumentsTypes, staticOnly, typeSolver) ==>… 66 …Line 110) context.getParent().solveMethod(name, argumentsTypes, staticOnly, typeSolver) ==> com.gi…
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/core/resolution/ |
D | Context.java | 177 boolean staticOnly) { in solveMethod() argument 178 return getParent().solveMethod(name, argumentsTypes, staticOnly); in solveMethod()
|
/external/javaparser/javaparser-symbol-solver-logic/src/main/java/com/github/javaparser/symbolsolver/logic/ |
D | MethodResolutionCapability.java | 11 boolean staticOnly); in solveMethod() argument
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/declarations/ |
D | JavaParserAnonymousClassDeclaration.java | 77 boolean staticOnly) { in solveMethod() argument 78 return getContext().solveMethod(name, argumentsTypes, staticOnly); in solveMethod()
|