Lines Matching refs:Sel

92 ObjCContainerDecl::getMethod(Selector Sel, bool isInstance,  in getMethod()  argument
109 lookup_result R = lookup(Sel); in getMethod()
126 Selector Sel = Property->getSetterName(); in HasUserDeclaredSetterMethod() local
127 lookup_result R = lookup(Sel); in HasUserDeclaredSetterMethod()
139 if (ObjCMethodDecl *MD = Cat->getInstanceMethod(Sel)) in HasUserDeclaredSetterMethod()
574 bool ObjCInterfaceDecl::isDesignatedInitializer(Selector Sel, in isDesignatedInitializer() argument
595 if (const ObjCMethodDecl *MD = IFace->getInstanceMethod(Sel)) { in isDesignatedInitializer()
603 if (const ObjCMethodDecl *MD = Ext->getInstanceMethod(Sel)) { in isDesignatedInitializer()
692 ObjCMethodDecl *ObjCInterfaceDecl::lookupMethod(Selector Sel, in lookupMethod() argument
710 if ((MethodDecl = ClassDecl->getMethod(Sel, isInstance))) in lookupMethod()
715 if ((MethodDecl = Cat->getMethod(Sel, isInstance))) in lookupMethod()
721 if ((MethodDecl = I->lookupMethod(Sel, isInstance))) in lookupMethod()
731 if ((MethodDecl = Protocol->lookupMethod(Sel, isInstance))) in lookupMethod()
750 const Selector &Sel, in lookupPrivateMethod() argument
761 Method = Instance ? ImpDecl->getInstanceMethod(Sel) in lookupPrivateMethod()
762 : ImpDecl->getClassMethod(Sel); in lookupPrivateMethod()
766 Method = getCategoryMethod(Sel, Instance); in lookupPrivateMethod()
772 Method = lookupInstanceMethod(Sel); in lookupPrivateMethod()
776 Method = lookupPrivateMethod(Sel, true); in lookupPrivateMethod()
780 return getSuperClass()->lookupPrivateMethod(Sel, Instance); in lookupPrivateMethod()
979 const auto &Sel = getSelector(); in getCanonicalDecl() local
989 if (ObjCMethodDecl *MD = IFD->getMethod(Sel, isInstanceMethod())) in getCanonicalDecl()
992 if (ObjCMethodDecl *MD = Ext->getMethod(Sel, isInstanceMethod())) in getCanonicalDecl()
997 if (ObjCMethodDecl *MD = CatD->getMethod(Sel, isInstanceMethod())) in getCanonicalDecl()
1004 cast<ObjCContainerDecl>(CtxD)->getMethod(Sel, isInstanceMethod(), in getCanonicalDecl()
1344 Selector Sel = getSelector(); in findPropertyDecl() local
1345 unsigned NumArgs = Sel.getNumArgs(); in findPropertyDecl()
1367 if (NextSel == Sel) in findPropertyDecl()
1374 if (NextSel == Sel) in findPropertyDecl()
1736 ObjCInterfaceDecl::getCategoryInstanceMethod(Selector Sel) const { in getCategoryInstanceMethod()
1739 if (ObjCMethodDecl *MD = Impl->getInstanceMethod(Sel)) in getCategoryInstanceMethod()
1746 ObjCMethodDecl *ObjCInterfaceDecl::getCategoryClassMethod(Selector Sel) const { in getCategoryClassMethod()
1749 if (ObjCMethodDecl *MD = Impl->getClassMethod(Sel)) in getCategoryClassMethod()
1968 ObjCMethodDecl *ObjCProtocolDecl::lookupMethod(Selector Sel, in lookupMethod() argument
1978 if ((MethodDecl = getMethod(Sel, isInstance))) in lookupMethod()
1982 if ((MethodDecl = I->lookupMethod(Sel, isInstance))) in lookupMethod()