Lines Matching defs:Sel
44 Selector Sel;
47 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("stringWithString"));
50 Sel = Ctx.Selectors.getUnarySelector(
54 Sel = Ctx.Selectors.getUnarySelector(
62 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
66 Sel= Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("stringWithCString"));
69 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("initWithString"));
72 return (NSStringSelectors[MK] = Sel);
80 Selector Sel;
83 Sel = Ctx.Selectors.getNullarySelector(&Ctx.Idents.get("array"));
86 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("arrayWithArray"));
89 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("arrayWithObject"));
92 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("arrayWithObjects"));
99 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
103 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("initWithArray"));
106 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("initWithObjects"));
109 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("objectAtIndex"));
116 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
120 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("addObject"));
127 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
135 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
139 return (NSArraySelectors[MK] = Sel);
145 Optional<NSAPI::NSArrayMethodKind> NSAPI::getNSArrayMethodKind(Selector Sel) {
148 if (Sel == getNSArraySelector(MK))
158 Selector Sel;
161 Sel = Ctx.Selectors.getNullarySelector(&Ctx.Idents.get("dictionary"));
164 Sel = Ctx.Selectors.getUnarySelector(
172 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
180 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
189 Sel = Ctx.Selectors.getSelector(3, KeyIdents);
193 Sel = Ctx.Selectors.getUnarySelector(
197 Sel = Ctx.Selectors.getUnarySelector(
201 Sel = Ctx.Selectors.getUnarySelector(
209 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
213 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("objectForKey"));
220 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
228 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
236 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
240 return (NSDictionarySelectors[MK] = Sel);
247 NSAPI::getNSDictionaryMethodKind(Selector Sel) {
250 if (Sel == getNSDictionarySelector(MK))
259 Selector Sel;
262 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("addObject"));
269 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
277 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
285 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
293 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
297 return (NSSetSelectors[MK] = Sel);
304 NSAPI::getNSSetMethodKind(Selector Sel) {
307 if (Sel == getNSSetSelector(MK))
367 NSAPI::getNSNumberLiteralMethodKind(Selector Sel) const {
370 if (isNSNumberLiteralSelector(MK, Sel))
603 Selector &Sel) const {
604 if (Sel.isNull()) {
609 Sel = Ctx.Selectors.getSelector(Idents.size(), Idents.data());
611 return Sel;
614 Selector NSAPI::getOrInitNullarySelector(StringRef Id, Selector &Sel) const {
615 if (Sel.isNull()) {
617 Sel = Ctx.Selectors.getSelector(0, &Ident);
619 return Sel;