• Home
  • Raw
  • Download

Lines Matching refs:NSUInteger

16 typedef unsigned long NSUInteger;  typedef
38 typedef NSUInteger NSStringEncoding;
74 extern id NSAllocateObject(Class aClass, NSUInteger extraBytes, NSZone *zone);
78 …SFastEnumeration - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state object…
88 …NSArray : NSObject <NSCopying, NSMutableCopying, NSCoding, NSFastEnumeration> - (NSUInteger)count;
99 - (NSUInteger)length;
103 - (id)initWithCharactersNoCopy:(unichar *)characters length:(NSUInteger)length freeWhenDone:(BOOL)f…
104 - (id)initWithCharacters:(const unichar *)characters length:(NSUInteger)length;
105 - (id)initWithBytes:(const void *)bytes length:(NSUInteger)len encoding:(NSStringEncoding)encoding;
106 - (id)initWithBytesNoCopy:(void *)bytes length:(NSUInteger)len encoding:(NSStringEncoding)encoding …
115 @interface NSData : NSObject <NSCopying, NSMutableCopying, NSCoding> - (NSUInteger)length;
116 + (id)dataWithBytesNoCopy:(void *)bytes length:(NSUInteger)length;
117 + (id)dataWithBytesNoCopy:(void *)bytes length:(NSUInteger)length freeWhenDone:(BOOL)b;
118 - (id)initWithBytesNoCopy:(void *)bytes length:(NSUInteger)length;
119 - (id)initWithBytesNoCopy:(void *)bytes length:(NSUInteger)length freeWhenDone:(BOOL)b;
121 length:(NSUInteger)length
122 deallocator:(void (^)(void *bytes, NSUInteger length))deallocator;
123 - (id)initWithBytes:(void *)bytes length:(NSUInteger)length;
150 - (void)insertPointer:(void *)item atIndex:(NSUInteger)index;
151 - (void)replacePointerAtIndex:(NSUInteger)index withPointer:(void *)item;
152 - (void *)pointerAtIndex:(NSUInteger)index;