Home | History | Annotate | Download | only in cocoa

Lines Matching full:items_

72 // Create any new pages after updating |items_|.
159 items_.reset([[NSMutableArray alloc] init]);
195 for (size_t i = 0; i < [items_ count]; ++i)
198 [items_ removeAllObjects];
233 return [items_ count];
382 for (size_t i = 0; i < [items_ count]; ++i) {
429 if ([items_ count] != 0)
430 targetPages = ([items_ count] - 1) / kItemsPerPage + 1;
478 NSMakeRange(0, [items_ count]));
479 NSArray* pageContent = [items_ subarrayWithRange:inPageRange];
495 [[items_ objectAtIndex:fromIndex] retain]);
496 [items_ removeObjectAtIndex:fromIndex];
497 [items_ insertObject:item
544 [items_ insertObject:[NSValue valueWithPointer:itemModel]
562 [items_ removeObjectsInRange:NSMakeRange(start, count)];
612 if (oldIndex + indexDelta >= [items_ count]) {
617 [self selectItemAtIndex:[items_ count] - 1];
626 if (index >= [items_ count])