Lines Matching full:id

11 + (id)alloc;
15 + (id)stringWithString:(NSString *)string;
16 - (id)initWithString:(NSString *)aString;
20 - (id)objectAtIndex:(unsigned long)index;
21 - (id)objectAtIndexedSubscript:(int)index;
25 + (id)array;
26 + (id)arrayWithObject:(id)anObject;
27 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt;
28 + (id)arrayWithObjects:(id)firstObj, ...;
29 + (id)arrayWithArray:(NSArray *)array;
31 - (id)initWithObjects:(const id [])objects count:(unsigned long)cnt;
32 - (id)initWithObjects:(id)firstObj, ...;
33 - (id)initWithArray:(NSArray *)array;
35 - (id)objectAtIndex:(unsigned long)index;
39 - (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
40 - (void)setObject:(id)object atIndexedSubscript:(int)index;
44 - (id)objectForKeyedSubscript:(id)key;
48 + (id)dictionary;
49 + (id)dictionaryWithObject:(id)object forKey:(id)key;
50 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
51 + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
52 + (id)dictionaryWithDictionary:(NSDictionary *)dict;
53 + (id)dictionaryWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
55 - (id)initWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
56 - (id)initWithObjectsAndKeys:(id)firstObject, ...;
57 - (id)initWithDictionary:(NSDictionary *)otherDictionary;
58 - (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
60 - (id)objectForKey:(id)aKey;
64 - (void)setObject:(id)anObject forKey:(id)aKey;
65 - (void)setObject:(id)object forKeyedSubscript:(id)key;