Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DDeclObjC.h1841 ObjCMethodDecl *lookupMethod(Selector Sel, bool isInstance,
1848 return lookupMethod(Sel, true/*isInstance*/); in lookupInstanceMethod()
1853 return lookupMethod(Sel, false/*isInstance*/); in lookupClassMethod()
1872 return lookupMethod(Sel, !IsClassProperty/*isInstance*/, in lookupPropertyAccessor()
2187 ObjCMethodDecl *lookupMethod(Selector Sel, bool isInstance) const;
2190 return lookupMethod(Sel, true/*isInstance*/); in lookupInstanceMethod()
2194 return lookupMethod(Sel, false/*isInstance*/); in lookupClassMethod()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DDeclObjC.cpp683 ObjCMethodDecl *ObjCInterfaceDecl::lookupMethod(Selector Sel, in lookupMethod() function in ObjCInterfaceDecl
712 if ((MethodDecl = I->lookupMethod(Sel, isInstance))) in lookupMethod()
722 if ((MethodDecl = Protocol->lookupMethod(Sel, isInstance))) in lookupMethod()
1891 ObjCMethodDecl *ObjCProtocolDecl::lookupMethod(Selector Sel, in lookupMethod() function in ObjCProtocolDecl
1905 if ((MethodDecl = I->lookupMethod(Sel, isInstance))) in lookupMethod()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDeclObjC.cpp438 IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod()); in ActOnStartOfObjCMethodDef()
489 SuperClass->lookupMethod(MDecl->getSelector(), in ActOnStartOfObjCMethodDef()
2733 (!Super || !Super->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs()
2748 IDecl->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs()
2765 (!Super || !Super->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs()
2771 if (C && IDecl->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs()
2916 if (SuperIDecl && SuperIDecl->lookupMethod(Sel, true)) in CheckCategoryVsClassMethodMatches()
2923 if (SuperIDecl && SuperIDecl->lookupMethod(Sel, false)) in CheckCategoryVsClassMethodMatches()
4657 if (auto *IMD = IDecl->lookupMethod(ObjCMethod->getSelector(), in ActOnMethodDeclaration()
4674 if (auto *IMD = P->lookupMethod(ObjCMethod->getSelector(), in ActOnMethodDeclaration()
[all …]
H A DSemaExprObjC.cpp1763 if (ObjCMethodDecl *method = iface->lookupMethod(sel, isInstance)) in LookupMethodInObjectType()
1774 if (ObjCMethodDecl *method = I->lookupMethod(sel, isInstance)) in LookupMethodInObjectType()
1788 if ((MD = PROTO->lookupMethod(Sel, Instance))) { in LookupMethodInQualifiedType()
4049 ClassMethod = RelatedClass->lookupMethod(Sel, false); in checkObjCBridgeRelatedComponents()
4063 InstanceMethod = RelatedClass->lookupMethod(Sel, true); in checkObjCBridgeRelatedComponents()
H A DSemaObjCProperty.cpp1787 ObjCMethodDecl *IMD = IFace->lookupMethod(Method->getSelector(), in IvarBacksCurrentMethodAccessor()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp1111 D = IDecl->lookupMethod(Sel, true); in canBeOverridenInSubclass()