Lines Matching defs:Sel

40     Selector Sel;
43 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("stringWithString"));
46 Sel = Ctx.Selectors.getUnarySelector(
54 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
58 Sel= Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("stringWithCString"));
61 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("initWithString"));
64 return (NSStringSelectors[MK] = Sel);
71 NSAPI::getNSStringMethodKind(Selector Sel) const {
74 if (Sel == getNSStringSelector(MK))
83 Selector Sel;
86 Sel = Ctx.Selectors.getNullarySelector(&Ctx.Idents.get("array"));
89 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("arrayWithArray"));
92 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("arrayWithObject"));
95 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("arrayWithObjects"));
102 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
106 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("initWithArray"));
109 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("initWithObjects"));
112 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("objectAtIndex"));
119 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
123 return (NSArraySelectors[MK] = Sel);
129 Optional<NSAPI::NSArrayMethodKind> NSAPI::getNSArrayMethodKind(Selector Sel) {
132 if (Sel == getNSArraySelector(MK))
142 Selector Sel;
145 Sel = Ctx.Selectors.getNullarySelector(&Ctx.Idents.get("dictionary"));
148 Sel = Ctx.Selectors.getUnarySelector(
156 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
164 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
173 Sel = Ctx.Selectors.getSelector(3, KeyIdents);
177 Sel = Ctx.Selectors.getUnarySelector(
181 Sel = Ctx.Selectors.getUnarySelector(
185 Sel = Ctx.Selectors.getUnarySelector(
193 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
197 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("objectForKey"));
204 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
208 return (NSDictionarySelectors[MK] = Sel);
215 NSAPI::getNSDictionaryMethodKind(Selector Sel) {
218 if (Sel == getNSDictionarySelector(MK))
278 NSAPI::getNSNumberLiteralMethodKind(Selector Sel) const {
281 if (isNSNumberLiteralSelector(MK, Sel))
420 Selector &Sel) const {
421 if (Sel.isNull()) {
426 Sel = Ctx.Selectors.getSelector(Idents.size(), Idents.data());
428 return Sel;