Lines Matching refs:getSelector

417         << 0 << MDecl->getSelector();  in ActOnStartOfObjCMethodDef()
439 IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod()); in ActOnStartOfObjCMethodDef()
490 SuperClass->lookupMethod(MDecl->getSelector(), in ActOnStartOfObjCMethodDef()
1772 MethodMap[MD->getSelector()] = MD; in DiagnoseClassExtensionDupMethods()
1777 const ObjCMethodDecl *&PrevMethod = MethodMap[Method->getSelector()]; in DiagnoseClassExtensionDupMethods()
2660 MethodDecl->getSelector() == GetNullarySelector("load", Context)); in WarnExactTypedMethods()
2748 Selector fISelector = S.Context.Selectors.getSelector(1, &II); in CheckProtocolMethodDefs()
2770 !InsMap.count(method->getSelector()) && in CheckProtocolMethodDefs()
2771 (!Super || !Super->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs()
2786 IDecl->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs()
2801 !ClsMap.count(method->getSelector()) && in CheckProtocolMethodDefs()
2802 (!Super || !Super->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs()
2808 if (C && IDecl->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs()
2841 if (!InsMapSeen.insert(I->getSelector()).second) in MatchAllMethodDeclarations()
2844 !InsMap.count(I->getSelector())) { in MatchAllMethodDeclarations()
2851 IMPDecl->getInstanceMethod(I->getSelector()); in MatchAllMethodDeclarations()
2852 assert(CDecl->getInstanceMethod(I->getSelector(), true/*AllowHidden*/) && in MatchAllMethodDeclarations()
2871 if (!ClsMapSeen.insert(I->getSelector()).second) in MatchAllMethodDeclarations()
2874 !ClsMap.count(I->getSelector())) { in MatchAllMethodDeclarations()
2880 IMPDecl->getClassMethod(I->getSelector()); in MatchAllMethodDeclarations()
2881 assert(CDecl->getClassMethod(I->getSelector(), true/*AllowHidden*/) && in MatchAllMethodDeclarations()
2955 Selector Sel = I->getSelector(); in CheckCategoryVsClassMethodMatches()
2965 Selector Sel = I->getSelector(); in CheckCategoryVsClassMethodMatches()
2988 InsMap.insert(I->getSelector()); in ImplMethodsVsClassMethods()
3019 ClsMap.insert(I->getSelector()); in ImplMethodsVsClassMethods()
3440 ReadMethodPool(Method->getSelector()); in AddMethodToGlobalPool()
3442 GlobalMethodPool::iterator Pos = MethodPool.find(Method->getSelector()); in AddMethodToGlobalPool()
3445 .insert(std::make_pair(Method->getSelector(), in AddMethodToGlobalPool()
3468 Selector sel = chosen->getSelector(); in isAcceptableMethodMismatch()
3678 std::string MethodName = Method->getSelector().getAsString(); in HelperSelectorsForTypoCorrection()
3732 (M->getMethod()->getSelector().getNumArgs() == NumArgs) && in SelectorsForTypoCorrection()
3733 (M->getMethod()->getSelector() != Sel)) { in SelectorsForTypoCorrection()
3737 HelperIsMethodInObjCType(*this, M->getMethod()->getSelector(), in SelectorsForTypoCorrection()
3744 (M->getMethod()->getSelector().getNumArgs() == NumArgs) && in SelectorsForTypoCorrection()
3745 (M->getMethod()->getSelector() != Sel)) { in SelectorsForTypoCorrection()
3749 HelperIsMethodInObjCType(*this, M->getMethod()->getSelector(), in SelectorsForTypoCorrection()
3951 IDecl->getMethod(MD->getSelector(), MD->isInstanceMethod())) { in DiagnoseCategoryDirectMembersProtocolConformance()
4022 const ObjCMethodDecl *&PrevMethod = InsMap[Method->getSelector()]; in ActOnAtEnd()
4040 InsMap[Method->getSelector()] = Method; in ActOnAtEnd()
4046 const ObjCMethodDecl *&PrevMethod = ClsMap[Method->getSelector()]; in ActOnAtEnd()
4064 ClsMap[Method->getSelector()] = Method; in ActOnAtEnd()
4287 Selector selector = method->getSelector(); in OverrideSearch()
4403 ObjCMethodDecl *meth = container->getMethod(Method->getSelector(), in search()
4471 MethodPool.find(ObjCMethod->getSelector()); in CheckObjCMethodOverrides()
4676 auto Sel = Method->getSelector(); in checkObjCDirectMethodClashes()
4859 if (Setter->getSelector() == Sel && in ActOnMethodDeclaration()
4865 if (Getter->getSelector() == Sel && in ActOnMethodDeclaration()
4891 if (auto *IMD = IDecl->lookupMethod(ObjCMethod->getSelector(), in ActOnMethodDeclaration()
4948 ObjCMethod->getSelector().getMethodFamily() == OMF_dealloc) { in ActOnMethodDeclaration()
4962 if (auto *IMD = P->lookupMethod(ObjCMethod->getSelector(), in ActOnMethodDeclaration()
5065 ObjCMethod->getSelector().getAsString() == "load") { in ActOnMethodDeclaration()
5285 Method = IDecl->lookupMethod(Method->getSelector(), /*isInstance=*/true, in GetIvarBackingPropertyAccessor()