Home
last modified time | relevance | path

Searched refs:fItems (Results 1 – 6 of 6) sorted by relevance

/external/skia/src/views/
DSkOSMenu.cpp22 fItems.deleteAll(); in reset()
27 for (int i = 0; i < fItems.count(); ++i) { in getItemByID()
28 if (itemID == fItems[i]->getID()) in getItemByID()
29 return fItems[i]; in getItemByID()
36 for (int i = 0; i < fItems.count(); ++i) { in getItems()
37 items[i] = fItems[i]; in getItems()
43 for (int i = 0; i < fItems.count(); ++i) { in assignKeyEquivalentToItem()
44 if (itemID == fItems[i]->getID()) in assignKeyEquivalentToItem()
45 fItems[i]->setKeyEquivalent(key); in assignKeyEquivalentToItem()
53 for (int i = 0; i < fItems.count(); ++i) { in handleKeyEquivalent()
[all …]
/external/skia/src/views/mac/
DSkOptionsTableView.mm20 @synthesize fItems;
29 self.fItems = [NSMutableArray array];
35 self.fItems = nil;
72 [fItems removeObjectsInRange:NSMakeRange(first, [fItems count] - first)];
141 [fItems addObject:option];
147 return [self.fItems count];
153 const SkOSMenu::Item* item = ((SkOptionItem*)[fItems objectAtIndex:row]).fItem;
168 return [((SkOptionItem*)[fItems objectAtIndex:row]).fCell copy];
178 SkOptionItem* option = (SkOptionItem*)[self.fItems objectAtIndex:row];
212 SkOptionItem* option = (SkOptionItem*)[self.fItems objectAtIndex:row];
DSkOptionsTableView.h21 NSMutableArray* fItems; local
25 @property (nonatomic, retain) NSMutableArray* fItems;
/external/skia/experimental/iOSSampleApp/Shared/
DSkOptionsTableViewController.mm23 @synthesize fItems, fCurrentList;
28 self.fItems = [NSMutableArray array];
63 [fItems removeObjectsInRange:NSMakeRange(first, [fItems count] - first)];
96 [fItems addObject:List];
136 [fItems addObject:option];
145 SkOptionItem* item = (SkOptionItem*)[fItems objectAtIndex:index];
288 return ((SkOptionItem*)[fItems objectAtIndex:[self convertPathToIndex:indexPath]]).fCell;
296 id item = [fItems objectAtIndex:[self convertPathToIndex:indexPath]];
335 self.fItems = nil;
DSkOptionsTableViewController.h23 NSMutableArray* fItems; local
28 @property (nonatomic, retain) NSMutableArray* fItems;
/external/skia/include/views/
DSkOSMenu.h95 int getCount() const { return fItems.count(); } in getCount()
175 SkTDArray<Item*> fItems; variable