Home
last modified time | relevance | path

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

/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/clang/include/clang/AST/
DDeclObjC.h1135 ObjCMethodDecl *lookupMethod(Selector Sel, bool isInstance,
1139 return lookupMethod(Sel, true/*isInstance*/, shallowCategoryLookup);
1143 return lookupMethod(Sel, false/*isInstance*/, shallowCategoryLookup);
1436 ObjCMethodDecl *lookupMethod(Selector Sel, bool isInstance) const;
1438 return lookupMethod(Sel, true/*isInstance*/); in lookupInstanceMethod()
1441 return lookupMethod(Sel, false/*isInstance*/); in lookupClassMethod()
/external/clang/lib/AST/
DDeclObjC.cpp379 ObjCMethodDecl *ObjCInterfaceDecl::lookupMethod(Selector Sel, in lookupMethod() function in ObjCInterfaceDecl
400 if ((MethodDecl = (*I)->lookupMethod(Sel, isInstance))) in lookupMethod()
417 if ((MethodDecl = (*I)->lookupMethod(Sel, isInstance))) in lookupMethod()
1417 ObjCMethodDecl *ObjCProtocolDecl::lookupMethod(Selector Sel, in lookupMethod() function in ObjCProtocolDecl
1431 if ((MethodDecl = (*I)->lookupMethod(Sel, isInstance))) in lookupMethod()
/external/clang/lib/StaticAnalyzer/Core/
DCallEvent.cpp774 D = IDecl->lookupMethod(Sel, true); in canBeOverridenInSubclass()
/external/clang/lib/Sema/
DSemaDeclObjC.cpp373 IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod()); in ActOnStartOfObjCMethodDef()
410 SuperClass->lookupMethod(MDecl->getSelector(), in ActOnStartOfObjCMethodDef()
2990 IMD = IDecl->lookupMethod(ObjCMethod->getSelector(), in ActOnMethodDeclaration()
DSemaExprObjC.cpp1285 if (ObjCMethodDecl *method = iface->lookupMethod(sel, isInstance)) in LookupMethodInObjectType()
1297 if (ObjCMethodDecl *method = (*i)->lookupMethod(sel, isInstance)) in LookupMethodInObjectType()
1313 if ((MD = PROTO->lookupMethod(Sel, Instance))) { in LookupMethodInQualifiedType()
DSemaObjCProperty.cpp1553 ObjCMethodDecl *IMD = IFace->lookupMethod(Method->getSelector(), in IvarBacksCurrentMethodAccessor()