Lines Matching refs:count
52 @property(nonatomic, readonly) NSUInteger count;
81 * @param count The capacity needed for the array.
83 * @return A newly instanced GPBInt32Array with a capacity of count.
85 + (instancetype)arrayWithCapacity:(NSUInteger)count;
96 * @param count The number of elements to copy into the array.
101 count:(NSUInteger)count;
115 * @param count The capacity needed for the array.
117 * @return A newly initialized GPBInt32Array with a capacity of count.
119 - (instancetype)initWithCapacity:(NSUInteger)count;
163 * @param count The number of elements to add.
165 - (void)addValues:(const int32_t [__nullable])values count:(NSUInteger)count;
224 @property(nonatomic, readonly) NSUInteger count;
253 * @param count The capacity needed for the array.
255 * @return A newly instanced GPBUInt32Array with a capacity of count.
257 + (instancetype)arrayWithCapacity:(NSUInteger)count;
268 * @param count The number of elements to copy into the array.
273 count:(NSUInteger)count;
287 * @param count The capacity needed for the array.
289 * @return A newly initialized GPBUInt32Array with a capacity of count.
291 - (instancetype)initWithCapacity:(NSUInteger)count;
335 * @param count The number of elements to add.
337 - (void)addValues:(const uint32_t [__nullable])values count:(NSUInteger)count;
396 @property(nonatomic, readonly) NSUInteger count;
425 * @param count The capacity needed for the array.
427 * @return A newly instanced GPBInt64Array with a capacity of count.
429 + (instancetype)arrayWithCapacity:(NSUInteger)count;
440 * @param count The number of elements to copy into the array.
445 count:(NSUInteger)count;
459 * @param count The capacity needed for the array.
461 * @return A newly initialized GPBInt64Array with a capacity of count.
463 - (instancetype)initWithCapacity:(NSUInteger)count;
507 * @param count The number of elements to add.
509 - (void)addValues:(const int64_t [__nullable])values count:(NSUInteger)count;
568 @property(nonatomic, readonly) NSUInteger count;
597 * @param count The capacity needed for the array.
599 * @return A newly instanced GPBUInt64Array with a capacity of count.
601 + (instancetype)arrayWithCapacity:(NSUInteger)count;
612 * @param count The number of elements to copy into the array.
617 count:(NSUInteger)count;
631 * @param count The capacity needed for the array.
633 * @return A newly initialized GPBUInt64Array with a capacity of count.
635 - (instancetype)initWithCapacity:(NSUInteger)count;
679 * @param count The number of elements to add.
681 - (void)addValues:(const uint64_t [__nullable])values count:(NSUInteger)count;
740 @property(nonatomic, readonly) NSUInteger count;
769 * @param count The capacity needed for the array.
771 * @return A newly instanced GPBFloatArray with a capacity of count.
773 + (instancetype)arrayWithCapacity:(NSUInteger)count;
784 * @param count The number of elements to copy into the array.
789 count:(NSUInteger)count;
803 * @param count The capacity needed for the array.
805 * @return A newly initialized GPBFloatArray with a capacity of count.
807 - (instancetype)initWithCapacity:(NSUInteger)count;
851 * @param count The number of elements to add.
853 - (void)addValues:(const float [__nullable])values count:(NSUInteger)count;
912 @property(nonatomic, readonly) NSUInteger count;
941 * @param count The capacity needed for the array.
943 * @return A newly instanced GPBDoubleArray with a capacity of count.
945 + (instancetype)arrayWithCapacity:(NSUInteger)count;
956 * @param count The number of elements to copy into the array.
961 count:(NSUInteger)count;
975 * @param count The capacity needed for the array.
977 * @return A newly initialized GPBDoubleArray with a capacity of count.
979 - (instancetype)initWithCapacity:(NSUInteger)count;
1023 * @param count The number of elements to add.
1025 - (void)addValues:(const double [__nullable])values count:(NSUInteger)count;
1084 @property(nonatomic, readonly) NSUInteger count;
1113 * @param count The capacity needed for the array.
1115 * @return A newly instanced GPBBoolArray with a capacity of count.
1117 + (instancetype)arrayWithCapacity:(NSUInteger)count;
1128 * @param count The number of elements to copy into the array.
1133 count:(NSUInteger)count;
1147 * @param count The capacity needed for the array.
1149 * @return A newly initialized GPBBoolArray with a capacity of count.
1151 - (instancetype)initWithCapacity:(NSUInteger)count;
1195 * @param count The number of elements to add.
1197 - (void)addValues:(const BOOL [__nullable])values count:(NSUInteger)count;
1256 @property(nonatomic, readonly) NSUInteger count;
1302 * @param count The capacity needed for the array.
1304 * @return A newly instanced GPBEnumArray with a capacity of count.
1307 capacity:(NSUInteger)count;
1324 * @param count The number of elements to copy into the array.
1330 count:(NSUInteger)count;
1345 * @param count The capacity needed for the array.
1347 * @return A newly initialized GPBEnumArray with a capacity of count.
1350 capacity:(NSUInteger)count;
1437 * @param count The number of elements to add.
1439 - (void)addValues:(const int32_t [__nullable])values count:(NSUInteger)count;
1488 * @param count The number of raw values to add.
1490 - (void)addRawValues:(const int32_t [__nullable])values count:(NSUInteger)count;
1570 //%@property(nonatomic, readonly) NSUInteger count;
1599 //% * @param count The capacity needed for the array.
1601 //% * @return A newly instanced GPB##NAME##Array with a capacity of count.
1603 //%+ (instancetype)arrayWithCapacity:(NSUInteger)count;
1614 //% * @param count The number of elements to copy into the array.
1619 //% count:(NSUInteger)count;
1633 //% * @param count The capacity needed for the array.
1635 //% * @return A newly initialized GPB##NAME##Array with a capacity of count.
1637 //%- (instancetype)initWithCapacity:(NSUInteger)count;
1662 //%@property(nonatomic, readonly) NSUInteger count;
1708 //% * @param count The capacity needed for the array.
1710 //% * @return A newly instanced GPB##NAME##Array with a capacity of count.
1713 //% capacity:(NSUInteger)count;
1730 //% * @param count The number of elements to copy into the array.
1736 //% count:(NSUInteger)count;
1751 //% * @param count The capacity needed for the array.
1753 //% * @return A newly initialized GPB##NAME##Array with a capacity of count.
1756 //% capacity:(NSUInteger)count;
1852 //% * @param count The number of elements to add.
1854 //%- (void)addValues:(const TYPE [__nullable])values count:(NSUInteger)count;
1942 //% * @param count The number of raw values to add.
1944 //%- (void)addRawValues:(const TYPE [__nullable])values count:(NSUInteger)count;