Lines Matching defs:Sel

45     Selector Sel;
48 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("stringWithString"));
51 Sel = Ctx.Selectors.getUnarySelector(
55 Sel = Ctx.Selectors.getUnarySelector(
61 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
65 Sel= Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("stringWithCString"));
68 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("initWithString"));
71 return (NSStringSelectors[MK] = Sel);
79 Selector Sel;
82 Sel = Ctx.Selectors.getNullarySelector(&Ctx.Idents.get("array"));
85 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("arrayWithArray"));
88 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("arrayWithObject"));
91 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("arrayWithObjects"));
96 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
100 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("initWithArray"));
103 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("initWithObjects"));
106 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("objectAtIndex"));
112 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
116 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("addObject"));
121 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
127 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
131 return (NSArraySelectors[MK] = Sel);
138 NSAPI::getNSArrayMethodKind(Selector Sel) {
141 if (Sel == getNSArraySelector(MK))
151 Selector Sel;
154 Sel = Ctx.Selectors.getNullarySelector(&Ctx.Idents.get("dictionary"));
157 Sel = Ctx.Selectors.getUnarySelector(
163 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
169 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
176 Sel = Ctx.Selectors.getSelector(3, KeyIdents);
180 Sel = Ctx.Selectors.getUnarySelector(
184 Sel = Ctx.Selectors.getUnarySelector(
188 Sel = Ctx.Selectors.getUnarySelector(
194 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
198 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("objectForKey"));
203 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
209 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
215 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
219 return (NSDictionarySelectors[MK] = Sel);
226 NSAPI::getNSDictionaryMethodKind(Selector Sel) {
229 if (Sel == getNSDictionarySelector(MK))
238 Selector Sel;
241 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("addObject"));
246 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
252 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
258 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
265 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
269 return (NSSetSelectors[MK] = Sel);
275 std::optional<NSAPI::NSSetMethodKind> NSAPI::getNSSetMethodKind(Selector Sel) {
278 if (Sel == getNSSetSelector(MK))
338 NSAPI::getNSNumberLiteralMethodKind(Selector Sel) const {
341 if (isNSNumberLiteralSelector(MK, Sel))
582 Selector &Sel) const {
583 if (Sel.isNull()) {
588 Sel = Ctx.Selectors.getSelector(Idents.size(), Idents.data());
590 return Sel;
593 Selector NSAPI::getOrInitNullarySelector(StringRef Id, Selector &Sel) const {
594 if (Sel.isNull()) {
596 Sel = Ctx.Selectors.getSelector(0, &Ident);
598 return Sel;