Lines Matching refs:Sel

311     Selector Sel = getSelector();
312 if (Sel.isUnarySelector())
314 return Sel.getNumArgs();
881 void setGetterName(Selector Sel, SourceLocation Loc = SourceLocation()) {
882 GetterName = Sel;
889 void setSetterName(Selector Sel, SourceLocation Loc = SourceLocation()) {
890 SetterName = Sel;
1056 ObjCMethodDecl *getMethod(Selector Sel, bool isInstance,
1059 ObjCMethodDecl *getInstanceMethod(Selector Sel,
1061 return getMethod(Sel, true/*isInstance*/, AllowHidden);
1064 ObjCMethodDecl *getClassMethod(Selector Sel, bool AllowHidden = false) const {
1065 return getMethod(Sel, false/*isInstance*/, AllowHidden);
1336 ObjCMethodDecl *getCategoryInstanceMethod(Selector Sel) const;
1337 ObjCMethodDecl *getCategoryClassMethod(Selector Sel) const;
1339 ObjCMethodDecl *getCategoryMethod(Selector Sel, bool isInstance) const {
1340 return isInstance ? getCategoryInstanceMethod(Sel)
1341 : getCategoryClassMethod(Sel);
1506 isDesignatedInitializer(Selector Sel,
1828 ObjCMethodDecl *lookupMethod(Selector Sel, bool isInstance,
1834 ObjCMethodDecl *lookupInstanceMethod(Selector Sel) const {
1835 return lookupMethod(Sel, true/*isInstance*/);
1839 ObjCMethodDecl *lookupClassMethod(Selector Sel) const {
1840 return lookupMethod(Sel, false/*isInstance*/);
1846 ObjCMethodDecl *lookupPrivateMethod(const Selector &Sel,
1849 ObjCMethodDecl *lookupPrivateClassMethod(const Selector &Sel) {
1850 return lookupPrivateMethod(Sel, false);
1856 ObjCMethodDecl *lookupPropertyAccessor(const Selector Sel,
1859 return lookupMethod(Sel, !IsClassProperty/*isInstance*/,
2210 ObjCMethodDecl *lookupMethod(Selector Sel, bool isInstance) const;
2212 ObjCMethodDecl *lookupInstanceMethod(Selector Sel) const {
2213 return lookupMethod(Sel, true/*isInstance*/);
2216 ObjCMethodDecl *lookupClassMethod(Selector Sel) const {
2217 return lookupMethod(Sel, false/*isInstance*/);