Lines Matching refs:Sel

93 ObjCContainerDecl::getMethod(Selector Sel, bool isInstance,  in getMethod()  argument
110 lookup_result R = lookup(Sel); in getMethod()
127 Selector Sel = Property->getSetterName(); in HasUserDeclaredSetterMethod() local
128 lookup_result R = lookup(Sel); in HasUserDeclaredSetterMethod()
140 if (ObjCMethodDecl *MD = Cat->getInstanceMethod(Sel)) in HasUserDeclaredSetterMethod()
570 bool ObjCInterfaceDecl::isDesignatedInitializer(Selector Sel, in isDesignatedInitializer() argument
591 if (const ObjCMethodDecl *MD = IFace->getInstanceMethod(Sel)) { in isDesignatedInitializer()
599 if (const ObjCMethodDecl *MD = Ext->getInstanceMethod(Sel)) { in isDesignatedInitializer()
699 ObjCMethodDecl *ObjCInterfaceDecl::lookupMethod(Selector Sel, in lookupMethod() argument
717 if ((MethodDecl = ClassDecl->getMethod(Sel, isInstance))) in lookupMethod()
722 if ((MethodDecl = Cat->getMethod(Sel, isInstance))) in lookupMethod()
728 if ((MethodDecl = I->lookupMethod(Sel, isInstance))) in lookupMethod()
738 if ((MethodDecl = Protocol->lookupMethod(Sel, isInstance))) in lookupMethod()
757 const Selector &Sel, in lookupPrivateMethod() argument
768 Method = Instance ? ImpDecl->getInstanceMethod(Sel) in lookupPrivateMethod()
769 : ImpDecl->getClassMethod(Sel); in lookupPrivateMethod()
773 Method = getCategoryMethod(Sel, Instance); in lookupPrivateMethod()
779 Method = lookupInstanceMethod(Sel); in lookupPrivateMethod()
783 Method = lookupPrivateMethod(Sel, true); in lookupPrivateMethod()
787 return getSuperClass()->lookupPrivateMethod(Sel, Instance); in lookupPrivateMethod()
1014 const auto &Sel = getSelector(); in getCanonicalDecl() local
1024 if (ObjCMethodDecl *MD = IFD->getMethod(Sel, isInstanceMethod())) in getCanonicalDecl()
1027 if (ObjCMethodDecl *MD = Ext->getMethod(Sel, isInstanceMethod())) in getCanonicalDecl()
1032 if (ObjCMethodDecl *MD = CatD->getMethod(Sel, isInstanceMethod())) in getCanonicalDecl()
1039 cast<ObjCContainerDecl>(CtxD)->getMethod(Sel, isInstanceMethod(), in getCanonicalDecl()
1379 Selector Sel = getSelector(); in findPropertyDecl() local
1380 unsigned NumArgs = Sel.getNumArgs(); in findPropertyDecl()
1402 if (NextSel == Sel) in findPropertyDecl()
1409 if (NextSel == Sel) in findPropertyDecl()
1765 ObjCInterfaceDecl::getCategoryInstanceMethod(Selector Sel) const { in getCategoryInstanceMethod()
1768 if (ObjCMethodDecl *MD = Impl->getInstanceMethod(Sel)) in getCategoryInstanceMethod()
1775 ObjCMethodDecl *ObjCInterfaceDecl::getCategoryClassMethod(Selector Sel) const { in getCategoryClassMethod()
1778 if (ObjCMethodDecl *MD = Impl->getClassMethod(Sel)) in getCategoryClassMethod()
1997 ObjCMethodDecl *ObjCProtocolDecl::lookupMethod(Selector Sel, in lookupMethod() argument
2007 if ((MethodDecl = getMethod(Sel, isInstance))) in lookupMethod()
2011 if ((MethodDecl = I->lookupMethod(Sel, isInstance))) in lookupMethod()