Lines Matching full:id

12 + (id)alloc;
19 + (id)stringWithString:(NSString *)string;
20 - (id)initWithString:(NSString *)aString;
24 - (id)objectAtIndex:(unsigned long)index;
28 - (id)objectAtIndexedSubscript:(unsigned)idx;
32 + (id)array;
33 + (id)arrayWithObject:(id)anObject;
34 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt;
35 + (id)arrayWithObjects:(id)firstObj, ...;
36 + (id)arrayWithArray:(NSArray *)array;
38 - (id)initWithObjects:(const id [])objects count:(unsigned long)cnt;
39 - (id)initWithObjects:(id)firstObj, ...;
40 - (id)initWithArray:(NSArray *)array;
44 - (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
48 - (void)setObject:(id)obj atIndexedSubscript:(unsigned)idx;
52 - (id)objectForKey:(id)aKey;
56 - (id)objectForKeyedSubscript:(id)key;
60 + (id)dictionary;
61 + (id)dictionaryWithObject:(id)object forKey:(id)key;
62 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
63 + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
64 + (id)dictionaryWithDictionary:(NSDictionary *)dict;
65 + (id)dictionaryWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
67 - (id)initWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
68 - (id)initWithObjectsAndKeys:(id)firstObject, ...;
69 - (id)initWithDictionary:(NSDictionary *)otherDictionary;
70 - (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
74 - (void)setObject:(id)anObject forKey:(id)aKey;
78 - (void)setObject:(id)obj forKeyedSubscript:(id <NSCopying>)key;
119 id o = arr[2];
169 NSDictionary *dict = @{(id)globStr: str};
170 dict = @{str: (id)globStr};
171 dict = @{(id)globStr: str};
172 dict = @{str: (id)globStr};
174 NSArray *arr = @[(id)globStr, (id)globStr];
175 arr = @[str, (id)globStr];
176 arr = @[(id)globStr, str];
177 arr = @[(id)globStr];
181 - (id)objectAtIndex:(unsigned long)index;
185 - (id)objectAtIndexedSubscript:(unsigned)idx;
189 - (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
193 - (void)setObject:(id)obj atIndexedSubscript:(unsigned)idx;
197 - (id)objectAtIndex:(unsigned long)index;
201 - (id)objectAtIndexedSubscript:(unsigned)idx __attribute__((unavailable));
205 - (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
209 - (void)setObject:(id)obj atIndexedSubscript:(unsigned)idx __attribute__((unavailable));
214 id o = mutc[4];
223 + (id)systemLocale;
224 + (id)currentLocale;
225 - (id)objectForKey:(id)key;
228 void test3(id key) {
229 id o = [[NSLocale currentLocale] objectForKey:key];