Lines Matching refs:id
45 - (BOOL)isEqual:(id)object;
46 - (id)retain;
47 - (id)copy;
49 - (id)autorelease;
50 - (id)init;
51 @end @protocol NSCopying - (id)copyWithZone:(NSZone *)zone;
52 @end @protocol NSMutableCopying - (id)mutableCopyWithZone:(NSZone *)zone;
56 + (id)allocWithZone:(NSZone *)zone;
57 + (id)alloc;
61 - (id)awakeAfterUsingCoder:(NSCoder *)aDecoder;
63 extern id NSAllocateObject(Class aClass, NSUInteger extraBytes, NSZone *zone);
67 @protocol NSFastEnumeration - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;
71 - (id)initWithInt:(int)value;
74 @end @interface NSArray (NSArrayCreation) + (id)array;
87 - (id)initWithUTF8String:(const char *)nullTerminatedCString;
88 - (id)initWithCharactersNoCopy:(unichar *)characters length:(NSUInteger)length freeWhenDone:(BOOL)freeBuffer;
89 - (id)initWithCharacters:(const unichar *)characters length:(NSUInteger)length;
90 - (id)initWithBytes:(const void *)bytes length:(NSUInteger)len encoding:(NSStringEncoding)encoding;
91 - (id)initWithBytesNoCopy:(void *)bytes length:(NSUInteger)len encoding:(NSStringEncoding)encoding freeWhenDone:(BOOL)freeBuffer;
92 + (id)stringWithUTF8String:(const char *)nullTerminatedCString;
93 + (id)stringWithString:(NSString *)string;
101 + (id)dataWithBytesNoCopy:(void *)bytes length:(NSUInteger)length;
102 + (id)dataWithBytesNoCopy:(void *)bytes length:(NSUInteger)length freeWhenDone:(BOOL)b;
103 - (id)initWithBytesNoCopy:(void *)bytes length:(NSUInteger)length;
104 - (id)initWithBytesNoCopy:(void *)bytes length:(NSUInteger)length freeWhenDone:(BOOL)b;
105 - (id)initWithBytes:(void *)bytes length:(NSUInteger) length;