/external/chromium_org/chrome/browser/safe_browsing/ |
safe_browsing_store.cc | 24 // Find items matching between |subs| and |adds|, and remove them. To minimize 34 // Keep a pair of output iterators for writing kept items. Due to 36 // individual items would result in O(N^2) copies. Using std::list 62 // Drop equal items. 74 // Remove deleted items (|chunk_id| in |del_set|) from the container. 76 void RemoveDeleted(ItemsT* items, const base::hash_set<int32>& del_set) { 77 DCHECK(items); 79 // Move items from |iter| to |end_iter|, skipping items in |del_set|. 80 typename ItemsT::iterator end_iter = items->begin() [all...] |
/external/chromium_org/third_party/sqlite/src/test/ |
tkt1443.test | 52 CREATE TABLE Items( 56 INSERT INTO "Items" VALUES(0, 'ALL'); 57 INSERT INTO "Items" VALUES(1, 'double:source'); 58 INSERT INTO "Items" VALUES(2, 'double'); 59 INSERT INTO "Items" VALUES(3, 'double:runtime'); 60 INSERT INTO "Items" VALUES(4, '.*:runtime'); 124 Items.Item as trove, UP.pattern as pattern 131 left outer join Items as PerItems 139 Labels, Items 143 and LabelMap.itemId = Items.itemI [all...] |
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
ArrayObjectAdapter.java | 34 * Construct an adapter that uses the given {@link Presenter} for all items. 70 * Notify that the content of a range of items changed. Note that this is 71 * not same as items being added or removed. 74 * @param itemCount The count of how many items have changed. 105 * @param index The index at which the items should be inserted. 106 * @param items A {@link Collection} of items to insert. 108 public void addAll(int index, Collection items) { 109 int itemsCount = items.size(); 113 mItems.addAll(index, items); [all...] |
/development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/ |
WiFiDirectServicesList.java | 56 private List<WiFiP2pService> items; field in class:WiFiDirectServicesList.WiFiDevicesAdapter 59 int textViewResourceId, List<WiFiP2pService> items) { 60 super(context, resource, textViewResourceId, items); 61 this.items = items; 72 WiFiP2pService service = items.get(position);
|
/external/chromium_org/storage/common/blob/ |
blob_data.h | 48 const std::vector<Item>& items() const { return items_; } function in class:storage::BlobData 82 if (a.items().size() != b.items().size()) 84 for (size_t i = 0; i < a.items().size(); ++i) { 85 if (a.items()[i] != b.items()[i])
|
/external/chromium_org/third_party/jstemplate/tutorial_examples/ |
08-transclude.html | 9 { title: "Jstemplates", items: [ 10 { title: "Using Jstemplates", items: [ 17 { title: "Template Processing Instructions", items: [ 19 { title: "Instruction Attributes", items: [ 72 <ul jsdisplay="items.length"> 73 <li jsselect="items">
|
/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
pubsubtasks_unittest.cc | 27 const std::vector<buzz::PubSubItem>& items) { 28 OnItems(items); 32 const std::vector<buzz::PubSubItem>& items) { 33 OnItems(items); 36 void OnItems(const std::vector<buzz::PubSubItem>& items) { 37 for (std::vector<buzz::PubSubItem>::const_iterator item = items.begin(); 38 item != items.end(); ++item) { 44 this->items.push_back(handled_item); 60 std::vector<HandledPubSubItem> items; member in class:TestPubSubTasksListener 96 "<pub:items node=\"topic\"/> [all...] |
/external/chromium_org/tools/json_schema_compiler/test/ |
functions_on_types_unittest.cc | 52 StorageArea::Get::Results::Items items; local 53 items.additional_properties.SetDouble("asdf", 0.1); 54 items.additional_properties.SetString("sdfg", "zxcv"); 56 StorageArea::Get::Results::Create(items); 59 EXPECT_TRUE(item_result->Equals(&items.additional_properties));
|
/external/chromium_org/third_party/icu/source/test/depstest/ |
dependencies.py | 17 items: Map from library or group names to item maps. 28 # TODO: Support binary items. 36 items = {} variable 94 global items, _line_number, _groups_to_be_defined 103 dep_item = items.get(dep) 109 items[dep] = {"type": "group"} 110 if library_name: items[dep]["library"] = library_name 139 global items, libraries, _line_number, _groups_to_be_defined 151 if name in items: 154 item = items[name] = {"type": "library" [all...] |
/external/icu/icu4c/source/test/depstest/ |
dependencies.py | 17 items: Map from library or group names to item maps. 28 # TODO: Support binary items. 36 items = {} variable 94 global items, _line_number, _groups_to_be_defined 103 dep_item = items.get(dep) 109 items[dep] = {"type": "group"} 110 if library_name: items[dep]["library"] = library_name 139 global items, libraries, _line_number, _groups_to_be_defined 151 if name in items: 154 item = items[name] = {"type": "library" [all...] |
/external/chromium_org/chrome/browser/resources/options/ |
cookies_view.css | 58 /* Enable animating the height of items. */ 113 /* Styles for the individual items (cookies, etc.). */ 114 .cookie-items { 122 /* Make the cookie items wrap correctly. */ 126 .measure-items .cookie-items { 132 .show-items .cookie-items { 137 .cookie-items .cookie-item { 153 .cookie-items .cookie-item:hover [all...] |
/external/chromium_org/third_party/boringssl/src/ssl/pqueue/ |
pqueue.c | 63 pitem *items; member in struct:_pqueue 108 pitem *pqueue_peek(pqueue_s *pq) { return pq->items; } 113 for (curr = pq->items; curr; curr = curr->next) { 123 pitem *item = pq->items; 133 piterator pqueue_iterator(pqueue_s *pq) { return pq->items; } 151 if (pq->items == NULL) { 152 pq->items = item; 156 for (curr = NULL, next = pq->items; next != NULL; 165 pq->items = item; 185 pitem *item = pq->items; [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
MixedItemSection.java | 63 /** {@code non-null;} the items in this part */ 64 private final ArrayList<OffsettedItem> items; field in class:MixedItemSection 66 /** {@code non-null;} items that have been explicitly interned */ 69 /** {@code non-null;} how to sort the items */ 86 * @param sort how the items should be sorted in the final output 92 this.items = new ArrayList<OffsettedItem>(100); 100 public Collection<? extends Item> items() { method in class:MixedItemSection 101 return items; 119 * Gets the size of this instance, in items. 124 return items.size() [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
MixedItemSection.java | 62 /** {@code non-null;} the items in this part */ 63 private final ArrayList<OffsettedItem> items; field in class:MixedItemSection 65 /** {@code non-null;} items that have been explicitly interned */ 68 /** {@code non-null;} how to sort the items */ 85 * @param sort how the items should be sorted in the final output 91 this.items = new ArrayList<OffsettedItem>(100); 99 public Collection<? extends Item> items() { method in class:MixedItemSection 100 return items; 118 * Gets the size of this instance, in items. 123 return items.size() [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
MixedItemSection.java | 63 /** {@code non-null;} the items in this part */ 64 private final ArrayList<OffsettedItem> items; field in class:MixedItemSection 66 /** {@code non-null;} items that have been explicitly interned */ 69 /** {@code non-null;} how to sort the items */ 86 * @param sort how the items should be sorted in the final output 92 this.items = new ArrayList<OffsettedItem>(100); 100 public Collection<? extends Item> items() { method in class:MixedItemSection 101 return items; 119 * Gets the size of this instance, in items. 124 return items.size() [all...] |
/frameworks/base/core/tests/inputmethodtests/src/android/os/ |
InputMethodSubtypeSwitchingControllerTest.java | 54 private static void addDummyImeSubtypeListItems(List<ImeSubtypeListItem> items, 80 items.add(new ImeSubtypeListItem(imeName, null /* variableName */, imi, 85 items.add(new ImeSubtypeListItem(imeName, subtypeLocale, imi, i, subtypeLocale, 92 final List<ImeSubtypeListItem> items = new ArrayList<ImeSubtypeListItem>(); local 93 addDummyImeSubtypeListItems(items, "LatinIme", "LatinIme", Arrays.asList("en_US", "fr"), 95 addDummyImeSubtypeListItems(items, "switchUnawareLatinIme", "switchUnawareLatinIme", 98 addDummyImeSubtypeListItems(items, "subtypeUnawareIme", "subtypeUnawareIme", null, 100 addDummyImeSubtypeListItems(items, "JapaneseIme", "JapaneseIme", Arrays.asList("ja_JP"), 102 addDummyImeSubtypeListItems(items, "switchUnawareJapaneseIme", "switchUnawareJapaneseIme", 104 return items; 108 final List<ImeSubtypeListItem> items = new ArrayList<ImeSubtypeListItem>(); local 301 final List<ImeSubtypeListItem> items = new ArrayList<ImeSubtypeListItem>(); local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_weakset.py | 41 self.items = [SomeClass(c) for c in ('a', 'b', 'c')] 50 self.s = WeakSet(self.items) 51 self.d = dict.fromkeys(self.items) 85 self.assertEqual(self.s, WeakSet(self.items)) 89 x = WeakSet(self.items + self.items2) 93 self.assertEqual(len(u), len(self.items) + len(self.items2)) 96 self.assertEqual(len(u), len(self.items) + len(self.items2)) 112 self.assertEqual(i.intersection(C(self.items)), x) 131 self.assertEqual(self.s, WeakSet(self.items)) 144 self.assertEqual(self.s, WeakSet(self.items)) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_weakset.py | 41 self.items = [SomeClass(c) for c in ('a', 'b', 'c')] 50 self.s = WeakSet(self.items) 51 self.d = dict.fromkeys(self.items) 85 self.assertEqual(self.s, WeakSet(self.items)) 89 x = WeakSet(self.items + self.items2) 93 self.assertEqual(len(u), len(self.items) + len(self.items2)) 96 self.assertEqual(len(u), len(self.items) + len(self.items2)) 112 self.assertEqual(i.intersection(C(self.items)), x) 131 self.assertEqual(self.s, WeakSet(self.items)) 144 self.assertEqual(self.s, WeakSet(self.items)) [all...] |
/developers/samples/android/ui/actionbarcompat/ActionBarCompat-Basic/ |
template-params.xml | 31 displays action items. It covers inflating items from a menu resource, as well as adding 32 an item in code. Items that are not shown as action items on the Action Bar are 67 which displays action items. It covers inflating items from a menu resource, 89 Once this is done, action items will be created for any options menu items that
|
/external/chromium_org/chrome/browser/ui/views/frame/ |
system_menu_insertion_delegate_win.h | 13 // items into the system item. It is only needed on windows as that is the only 14 // place we insert items into the system menu.
|
/external/chromium_org/chrome/common/extensions/docs/templates/private/ |
table_of_contents_items.html | 2 {{#l0:items}} 23 {{/items}}
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/ |
NavigationClient.java | 11 * items in the history. 18 * @param itemLimit The limit on the number of items included in the history.
|
/external/chromium_org/media/filters/ |
webvtt_util.h | 18 // a WebVTT cue, we can have potentially two side data items. In order to 20 // side data items onto a single one, and terminate each with a NUL marker.
|
/external/chromium_org/third_party/cython/src/Cython/Utility/ |
arrayarray.h | 108 void *items = (void*) self->data.ob_item; local 109 PyMem_Resize(items, char, (size_t)(n * self->ob_descr->itemsize)); 110 if (items == NULL) { 114 self->data.ob_item = (char*) items; 123 void *items = (void*) self->data.ob_item; local 132 PyMem_Resize(items, char, (size_t)(newsize * self->ob_descr->itemsize)); 133 if (items == NULL) { 137 self->data.ob_item = (char*) items;
|
/external/chromium_org/third_party/simplejson/ |
ordered_dict.py | 76 items = [[k, self[k]] for k in self] 82 return (self.__class__, (items,), inst_dict) 83 return self.__class__, (items,) 92 items = DictMixin.items variable in class:OrderedDict 100 return '%s(%r)' % (self.__class__.__name__, self.items()) 115 all(p==q for p, q in zip(self.items(), other.items()))
|