• Home
  • Raw
  • Download

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()
1756 MethodMap[MD->getSelector()] = MD; in DiagnoseClassExtensionDupMethods()
1761 const ObjCMethodDecl *&PrevMethod = MethodMap[Method->getSelector()]; in DiagnoseClassExtensionDupMethods()
2639 MethodDecl->getSelector() == GetNullarySelector("load", Context)); in WarnExactTypedMethods()
2732 Selector fISelector = S.Context.Selectors.getSelector(1, &II); in CheckProtocolMethodDefs()
2754 !InsMap.count(method->getSelector()) && in CheckProtocolMethodDefs()
2755 (!Super || !Super->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs()
2770 IDecl->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs()
2786 !ClsMap.count(method->getSelector()) && in CheckProtocolMethodDefs()
2787 (!Super || !Super->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs()
2793 if (C && IDecl->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs()
2826 if (!InsMapSeen.insert(I->getSelector()).second) in MatchAllMethodDeclarations()
2829 !InsMap.count(I->getSelector())) { in MatchAllMethodDeclarations()
2836 IMPDecl->getInstanceMethod(I->getSelector()); in MatchAllMethodDeclarations()
2837 assert(CDecl->getInstanceMethod(I->getSelector(), true/*AllowHidden*/) && in MatchAllMethodDeclarations()
2856 if (!ClsMapSeen.insert(I->getSelector()).second) in MatchAllMethodDeclarations()
2859 !ClsMap.count(I->getSelector())) { in MatchAllMethodDeclarations()
2865 IMPDecl->getClassMethod(I->getSelector()); in MatchAllMethodDeclarations()
2866 assert(CDecl->getClassMethod(I->getSelector(), true/*AllowHidden*/) && in MatchAllMethodDeclarations()
2940 Selector Sel = I->getSelector(); in CheckCategoryVsClassMethodMatches()
2950 Selector Sel = I->getSelector(); in CheckCategoryVsClassMethodMatches()
2973 InsMap.insert(I->getSelector()); in ImplMethodsVsClassMethods()
3004 ClsMap.insert(I->getSelector()); in ImplMethodsVsClassMethods()
3426 ReadMethodPool(Method->getSelector()); in AddMethodToGlobalPool()
3428 GlobalMethodPool::iterator Pos = MethodPool.find(Method->getSelector()); in AddMethodToGlobalPool()
3430 Pos = MethodPool.insert(std::make_pair(Method->getSelector(), in AddMethodToGlobalPool()
3452 Selector sel = chosen->getSelector(); in isAcceptableMethodMismatch()
3662 std::string MethodName = Method->getSelector().getAsString(); in HelperSelectorsForTypoCorrection()
3716 (M->getMethod()->getSelector().getNumArgs() == NumArgs) && in SelectorsForTypoCorrection()
3717 (M->getMethod()->getSelector() != Sel)) { in SelectorsForTypoCorrection()
3721 HelperIsMethodInObjCType(*this, M->getMethod()->getSelector(), in SelectorsForTypoCorrection()
3728 (M->getMethod()->getSelector().getNumArgs() == NumArgs) && in SelectorsForTypoCorrection()
3729 (M->getMethod()->getSelector() != Sel)) { in SelectorsForTypoCorrection()
3733 HelperIsMethodInObjCType(*this, M->getMethod()->getSelector(), in SelectorsForTypoCorrection()
3935 IDecl->getMethod(MD->getSelector(), MD->isInstanceMethod())) { in DiagnoseCategoryDirectMembersProtocolConformance()
4006 const ObjCMethodDecl *&PrevMethod = InsMap[Method->getSelector()]; in ActOnAtEnd()
4024 InsMap[Method->getSelector()] = Method; in ActOnAtEnd()
4030 const ObjCMethodDecl *&PrevMethod = ClsMap[Method->getSelector()]; in ActOnAtEnd()
4048 ClsMap[Method->getSelector()] = Method; in ActOnAtEnd()
4271 Selector selector = method->getSelector(); in OverrideSearch()
4387 ObjCMethodDecl *meth = container->getMethod(Method->getSelector(), in search()
4449 MethodPool.find(ObjCMethod->getSelector()); in CheckObjCMethodOverrides()
4654 auto Sel = Method->getSelector(); in checkObjCDirectMethodClashes()
4837 if (Setter->getSelector() == Sel && in ActOnMethodDeclaration()
4843 if (Getter->getSelector() == Sel && in ActOnMethodDeclaration()
4868 if (auto *IMD = IDecl->lookupMethod(ObjCMethod->getSelector(), in ActOnMethodDeclaration()
4923 ObjCMethod->getSelector().getMethodFamily() == OMF_dealloc) { in ActOnMethodDeclaration()
4937 if (auto *IMD = P->lookupMethod(ObjCMethod->getSelector(), in ActOnMethodDeclaration()
5040 ObjCMethod->getSelector().getAsString() == "load") { in ActOnMethodDeclaration()
5260 Method = IDecl->lookupMethod(Method->getSelector(), /*isInstance=*/true, in GetIvarBackingPropertyAccessor()