Home | History | Annotate | Download | only in AST

Lines Matching defs:Idents

38     return (ClassIds[K] = &Ctx.Idents.get(ClassName[K]));
48 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("stringWithString"));
52 &Ctx.Idents.get("stringWithUTF8String"));
56 &Ctx.Idents.get("initWithUTF8String"));
60 &Ctx.Idents.get("stringWithCString"),
61 &Ctx.Idents.get("encoding")
67 Sel= Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("stringWithCString"));
70 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("initWithString"));
95 Sel = Ctx.Selectors.getNullarySelector(&Ctx.Idents.get("array"));
98 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("arrayWithArray"));
101 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("arrayWithObject"));
104 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("arrayWithObjects"));
108 &Ctx.Idents.get("arrayWithObjects"),
109 &Ctx.Idents.get("count")
115 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("initWithArray"));
118 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("initWithObjects"));
121 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("objectAtIndex"));
125 &Ctx.Idents.get("replaceObjectAtIndex"),
126 &Ctx.Idents.get("withObject")
132 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("addObject"));
136 &Ctx.Idents.get("insertObject"),
137 &Ctx.Idents.get("atIndex")
144 &Ctx.Idents.get("setObject"),
145 &Ctx.Idents.get("atIndexedSubscript")
173 Sel = Ctx.Selectors.getNullarySelector(&Ctx.Idents.get("dictionary"));
177 &Ctx.Idents.get("dictionaryWithDictionary"));
181 &Ctx.Idents.get("dictionaryWithObject"),
182 &Ctx.Idents.get("forKey")
189 &Ctx.Idents.get("dictionaryWithObjects"),
190 &Ctx.Idents.get("forKeys")
197 &Ctx.Idents.get("dictionaryWithObjects"),
198 &Ctx.Idents.get("forKeys"),
199 &Ctx.Idents.get("count")
206 &Ctx.Idents.get("dictionaryWithObjectsAndKeys"));
210 &Ctx.Idents.get("initWithDictionary"));
214 &Ctx.Idents.get("initWithObjectsAndKeys"));
218 &Ctx.Idents.get("initWithObjects"),
219 &Ctx.Idents.get("forKeys")
225 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("objectForKey"));
229 &Ctx.Idents.get("setObject"),
230 &Ctx.Idents.get("forKey")
237 &Ctx.Idents.get("setObject"),
238 &Ctx.Idents.get("forKeyedSubscript")
245 &Ctx.Idents.get("setValue"),
246 &Ctx.Idents.get("forKey")
274 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("addObject"));
278 &Ctx.Idents.get("insertObject"),
279 &Ctx.Idents.get("atIndex")
286 &Ctx.Idents.get("setObject"),
287 &Ctx.Idents.get("atIndex")
294 &Ctx.Idents.get("setObject"),
295 &Ctx.Idents.get("atIndexedSubscript")
302 &Ctx.Idents.get("replaceObjectAtIndex"),
303 &Ctx.Idents.get("withObject")
374 Sels[MK] = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get(Names[MK]));
522 return Ctx.Idents.get(Id).hasMacroDefinition();
553 II = &Ctx.Idents.get(name);
572 II = &Ctx.Idents.get(name);
585 SmallVector<IdentifierInfo *, 4> Idents;
588 Idents.push_back(&Ctx.Idents.get(*I));
589 Sel = Ctx.Selectors.getSelector(Idents.size(), Idents.data());