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()
2661 MethodDecl->getSelector() == GetNullarySelector("load", Context)); in WarnExactTypedMethods()
2749 Selector fISelector = S.Context.Selectors.getSelector(1, &II); in CheckProtocolMethodDefs()
2772 !InsMap.count(method->getSelector()) && in CheckProtocolMethodDefs()
2774 method->getSelector(), true /* instance */, in CheckProtocolMethodDefs()
2787 method->getSelector(), true /* instance */, in CheckProtocolMethodDefs()
2801 !ClsMap.count(method->getSelector()) && in CheckProtocolMethodDefs()
2803 method->getSelector(), false /* class method */, in CheckProtocolMethodDefs()
2807 if (C && IDecl->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs()
2840 if (!InsMapSeen.insert(I->getSelector()).second) in MatchAllMethodDeclarations()
2843 !InsMap.count(I->getSelector())) { in MatchAllMethodDeclarations()
2850 IMPDecl->getInstanceMethod(I->getSelector()); in MatchAllMethodDeclarations()
2851 assert(CDecl->getInstanceMethod(I->getSelector(), true/*AllowHidden*/) && in MatchAllMethodDeclarations()
2870 if (!ClsMapSeen.insert(I->getSelector()).second) in MatchAllMethodDeclarations()
2873 !ClsMap.count(I->getSelector())) { in MatchAllMethodDeclarations()
2879 IMPDecl->getClassMethod(I->getSelector()); in MatchAllMethodDeclarations()
2880 assert(CDecl->getClassMethod(I->getSelector(), true/*AllowHidden*/) && in MatchAllMethodDeclarations()
2954 Selector Sel = I->getSelector(); in CheckCategoryVsClassMethodMatches()
2964 Selector Sel = I->getSelector(); in CheckCategoryVsClassMethodMatches()
2987 InsMap.insert(I->getSelector()); in ImplMethodsVsClassMethods()
3018 ClsMap.insert(I->getSelector()); in ImplMethodsVsClassMethods()
3439 ReadMethodPool(Method->getSelector()); in AddMethodToGlobalPool()
3441 GlobalMethodPool::iterator Pos = MethodPool.find(Method->getSelector()); in AddMethodToGlobalPool()
3444 .insert(std::make_pair(Method->getSelector(), in AddMethodToGlobalPool()
3467 Selector sel = chosen->getSelector(); in isAcceptableMethodMismatch()
3677 std::string MethodName = Method->getSelector().getAsString(); in HelperSelectorsForTypoCorrection()
3731 (M->getMethod()->getSelector().getNumArgs() == NumArgs) && in SelectorsForTypoCorrection()
3732 (M->getMethod()->getSelector() != Sel)) { in SelectorsForTypoCorrection()
3736 HelperIsMethodInObjCType(*this, M->getMethod()->getSelector(), in SelectorsForTypoCorrection()
3743 (M->getMethod()->getSelector().getNumArgs() == NumArgs) && in SelectorsForTypoCorrection()
3744 (M->getMethod()->getSelector() != Sel)) { in SelectorsForTypoCorrection()
3748 HelperIsMethodInObjCType(*this, M->getMethod()->getSelector(), in SelectorsForTypoCorrection()
3950 IDecl->getMethod(MD->getSelector(), MD->isInstanceMethod())) { in DiagnoseCategoryDirectMembersProtocolConformance()
4021 const ObjCMethodDecl *&PrevMethod = InsMap[Method->getSelector()]; in ActOnAtEnd()
4039 InsMap[Method->getSelector()] = Method; in ActOnAtEnd()
4045 const ObjCMethodDecl *&PrevMethod = ClsMap[Method->getSelector()]; in ActOnAtEnd()
4063 ClsMap[Method->getSelector()] = Method; in ActOnAtEnd()
4286 Selector selector = method->getSelector(); in OverrideSearch()
4402 ObjCMethodDecl *meth = container->getMethod(Method->getSelector(), in search()
4470 MethodPool.find(ObjCMethod->getSelector()); in CheckObjCMethodOverrides()
4675 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()