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;
86 - (id)initWithInt:(int)value;