Home
last modified time | relevance | path

Searched refs:lookupMethod (Results 1 – 15 of 15) sorted by relevance

/external/r8/src/main/java/com/android/tools/r8/graph/
DGraphLense.java62 public abstract DexMethod lookupMethod(DexMethod method, DexEncodedMethod context); in lookupMethod() method in GraphLense
84 public DexMethod lookupMethod(DexMethod method, DexEncodedMethod context) { in lookupMethod() method in GraphLense.IdentityGraphLense
139 public DexMethod lookupMethod(DexMethod method, DexEncodedMethod context) { in lookupMethod() method in GraphLense.NestedGraphLense
140 DexMethod previous = previousLense.lookupMethod(method, context); in lookupMethod()
/external/r8/src/main/java/com/android/tools/r8/optimize/
DBridgeMethodAnalysis.java47 target = lense.lookupMethod(target, method); in identifyBridgeMethods()
96 public DexMethod lookupMethod(DexMethod method, DexEncodedMethod context) { in lookupMethod() method in BridgeMethodAnalysis.BridgeLense
97 DexMethod previous = previousLense.lookupMethod(method, context); in lookupMethod()
DMemberRebindingAnalysis.java113 method = lense.lookupMethod(method, null); in computeMethodRebinding()
/external/javassist/src/main/javassist/compiler/
DMemberResolver.java75 public Method lookupMethod(CtClass clazz, CtClass currentClass, MethodInfo current, in lookupMethod() method in MemberResolver
96 Method m = lookupMethod(clazz, methodName, argTypes, argDims, in lookupMethod()
104 private Method lookupMethod(CtClass clazz, String methodName, in lookupMethod() method in MemberResolver
144 Method r = lookupMethod(pclazz, methodName, argTypes, in lookupMethod()
158 Method r = lookupMethod(ifs[i], methodName, in lookupMethod()
169 Method r = lookupMethod(pclazz, methodName, argTypes, in lookupMethod()
DTypeChecker.java705 = resolver.lookupMethod(targetClass, thisClass, thisMethod, in atMethodCallCore()
DMemberCodeGen.java561 found = resolver.lookupMethod(targetClass, thisClass, thisMethod, in atMethodCallCore()
/external/r8/src/main/java/com/android/tools/r8/shaking/
DEnqueuer.java1117 this.targetedMethods = rewriteItems(previous.targetedMethods, lense::lookupMethod); in AppInfoWithLiveness()
1118 this.liveMethods = rewriteItems(previous.liveMethods, lense::lookupMethod); in AppInfoWithLiveness()
1130 this.virtualInvokes = rewriteItems(previous.virtualInvokes, lense::lookupMethod); in AppInfoWithLiveness()
1131 this.superInvokes = rewriteItems(previous.superInvokes, lense::lookupMethod); in AppInfoWithLiveness()
1132 this.directInvokes = rewriteItems(previous.directInvokes, lense::lookupMethod); in AppInfoWithLiveness()
1133 this.staticInvokes = rewriteItems(previous.staticInvokes, lense::lookupMethod); in AppInfoWithLiveness()
/external/r8/src/main/java/com/android/tools/r8/ir/conversion/
DLensCodeRewriter.java98 DexMethod actualTarget = graphLense.lookupMethod(invokedMethod, method); in rewrite()
208 DexMethod actualTarget = graphLense.lookupMethod(invokedMethod, method); in rewriteDexMethodHandle()
DCallGraph.java350 method = graphLense.lookupMethod(method, source); in processInvoke()
/external/clang/include/clang/AST/
DDeclObjC.h1743 ObjCMethodDecl *lookupMethod(Selector Sel, bool isInstance,
1750 return lookupMethod(Sel, true/*isInstance*/); in lookupInstanceMethod()
1755 return lookupMethod(Sel, false/*isInstance*/); in lookupClassMethod()
1773 return lookupMethod(Sel, !IsClassProperty/*isInstance*/, in lookupPropertyAccessor()
2077 ObjCMethodDecl *lookupMethod(Selector Sel, bool isInstance) const;
2079 return lookupMethod(Sel, true/*isInstance*/); in lookupInstanceMethod()
2082 return lookupMethod(Sel, false/*isInstance*/); in lookupClassMethod()
/external/clang/lib/AST/
DDeclObjC.cpp653 ObjCMethodDecl *ObjCInterfaceDecl::lookupMethod(Selector Sel, in lookupMethod() function in ObjCInterfaceDecl
682 if ((MethodDecl = I->lookupMethod(Sel, isInstance))) in lookupMethod()
693 if ((MethodDecl = (*I)->lookupMethod(Sel, isInstance))) in lookupMethod()
1820 ObjCMethodDecl *ObjCProtocolDecl::lookupMethod(Selector Sel, in lookupMethod() function in ObjCProtocolDecl
1834 if ((MethodDecl = I->lookupMethod(Sel, isInstance))) in lookupMethod()
/external/clang/lib/Sema/
DSemaDeclObjC.cpp367 IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod()); in ActOnStartOfObjCMethodDef()
420 SuperClass->lookupMethod(MDecl->getSelector(), in ActOnStartOfObjCMethodDef()
2662 (!Super || !Super->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs()
2677 IDecl->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs()
2694 (!Super || !Super->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs()
2700 if (C && IDecl->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs()
2845 if (SuperIDecl && SuperIDecl->lookupMethod(Sel, true)) in CheckCategoryVsClassMethodMatches()
2852 if (SuperIDecl && SuperIDecl->lookupMethod(Sel, false)) in CheckCategoryVsClassMethodMatches()
4414 if (auto *IMD = IDecl->lookupMethod(ObjCMethod->getSelector(), in ActOnMethodDeclaration()
4702 Method = IDecl->lookupMethod(Method->getSelector(), /*isInstance=*/true, in GetIvarBackingPropertyAccessor()
DSemaExprObjC.cpp1721 if (ObjCMethodDecl *method = iface->lookupMethod(sel, isInstance)) in LookupMethodInObjectType()
1732 if (ObjCMethodDecl *method = I->lookupMethod(sel, isInstance)) in LookupMethodInObjectType()
1746 if ((MD = PROTO->lookupMethod(Sel, Instance))) { in LookupMethodInQualifiedType()
3890 ClassMethod = RelatedClass->lookupMethod(Sel, false); in checkObjCBridgeRelatedComponents()
3904 InstanceMethod = RelatedClass->lookupMethod(Sel, true); in checkObjCBridgeRelatedComponents()
DSemaObjCProperty.cpp1622 ObjCMethodDecl *IMD = IFace->lookupMethod(Method->getSelector(), in IvarBacksCurrentMethodAccessor()
/external/clang/lib/StaticAnalyzer/Core/
DCallEvent.cpp865 D = IDecl->lookupMethod(Sel, true); in canBeOverridenInSubclass()