Searched refs:items (Results 76 - 100 of 1140) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/public/platform/
H A DWebGamepads.h47 // Number of valid entries in the items array.
51 WebGamepad items[itemsLengthCap]; member in class:blink::WebGamepads
/external/clang/test/Preprocessor/
H A Dc99-6_10_3_4_p9.c15 showlist(The first, second, and third items.);
16 // CHECK: puts("The first, second, and third items.");
/external/cmockery/cmockery_0_1_2/src/example/
H A Dkey_value_test.c42 KeyValue * const items = (KeyValue*)test_malloc(sizeof(key_values)); local
43 memcpy(items, key_values, sizeof(key_values));
44 *state = (void*)items;
45 set_key_values(items, sizeof(key_values) / sizeof(key_values[0]));
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/perl/Perf-Trace-Util/
H A DContext.c51 if (items != 1)
74 if (items != 1)
97 if (items != 1)
125 PERL_UNUSED_VAR(items); /* -W */
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowItemizedOverlay.java23 private ArrayList<Item> items = new ArrayList<Item>(); field in class:ShadowItemizedOverlay
32 items.clear();
34 items.add(getBridge().createItem(i));
40 return items.get(position);
/external/smack/src/org/jivesoftware/smackx/pubsub/listener/
H A DItemEventListener.java21 * Defines the listener for items being published to a node.
33 * @param items The publishing details.
35 void handlePublishedItems(ItemPublishEvent<T> items); argument
/external/smack/src/org/jivesoftware/smackx/packet/
H A DDiscoverItems.java33 * A DiscoverItems IQ packet, which is used by XMPP clients to request and receive items
36 * The items could also be queried in order to discover if they contain items inside. Some items
43 public static final String NAMESPACE = "http://jabber.org/protocol/disco#items";
45 private final List<Item> items = new CopyOnWriteArrayList<Item>(); field in class:DiscoverItems
54 synchronized (items) {
55 items.add(item);
60 * Adds a collection of items to the discovered information. Does nothing if itemsToAdd is null
72 * Returns the discovered items o
[all...]
/external/chromium_org/third_party/skia/tools/
H A Dbench_pictures_cfg_helper.py33 timeIndividualTiles=timeIndividualTiles).items() + kwargs.items()))
37 return GPUConfig(**dict(TileArgs(tile_x, tile_y).items() + kwargs.items()))
42 timeIndividualTiles=timeIndividualTiles).items() + kwargs.items()))
99 return RTreeConfig(**dict(TileArgs(tile_x, tile_y).items() + kwargs.items()))
112 **dict(TileArgs(tile_x, tile_y).items() + kwargs.items()))
[all...]
/external/skia/tools/
H A Dbench_pictures_cfg_helper.py33 timeIndividualTiles=timeIndividualTiles).items() + kwargs.items()))
37 return GPUConfig(**dict(TileArgs(tile_x, tile_y).items() + kwargs.items()))
42 timeIndividualTiles=timeIndividualTiles).items() + kwargs.items()))
99 return RTreeConfig(**dict(TileArgs(tile_x, tile_y).items() + kwargs.items()))
112 **dict(TileArgs(tile_x, tile_y).items() + kwargs.items()))
[all...]
/external/chromium_org/chrome/browser/ui/ash/launcher/
H A Dbrowser_shortcut_launcher_item_controller.cc64 ash::ShelfItem browser_item = model->items()[browser_index];
170 ChromeLauncherAppMenuItems items; local
173 items.push_back(new ChromeLauncherAppMenuItem(GetTitle(), NULL, false));
199 items.push_back(new ChromeLauncherAppMenuItemBrowser(
200 title, &app_icon, browser, items.size() == 1));
211 items.push_back(new ChromeLauncherAppMenuItemTab(
219 items.clear();
220 return items.Pass();
289 std::vector<Browser*> items; local
298 items
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DEnumerationValuesPropertyEditor.java42 int items = enumElements.length / 3;
43 m_names = new String[items];
44 m_values = new Object[items];
45 m_sources = new String[items];
46 for (int i = 0; i < items; i++) {
/external/chromium_org/third_party/icu/source/test/depstest/
H A Ddependencies.py17 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[nam
[all...]
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dpubsubclient_unittest.cc26 const std::vector<buzz::PubSubItem>& items) {
27 for (std::vector<buzz::PubSubItem>::const_iterator item = items.begin();
28 item != items.end(); ++item) {
34 this->items.push_back(handled_item);
69 std::vector<HandledPubSubItem> items; member in class:TestPubSubItemsListener
116 "<pub:items node=\"topic\"/>"
126 " <items node='topic'>"
133 " </items>"
138 ASSERT_EQ(2U, listener->items.size());
139 EXPECT_EQ("key0", listener->items[
25 OnItems(buzz::PubSubClient*, const std::vector<buzz::PubSubItem>& items) argument
[all...]
H A Dpubsubtasks.cc64 // Creates <pubsub node="node"><items></pubsub>
109 std::vector<PubSubItem>* items) {
113 items->push_back(item);
116 // Right now, <retract>s are treated the same as items with empty
120 std::vector<PubSubItem>* items) {
121 ParseItem(retract_elem, items);
125 std::vector<PubSubItem>* items) {
135 ParseItem(item_elem, items);
141 ParseRetract(retract_elem, items);
148 std::vector<PubSubItem>* items) {
108 ParseItem(const XmlElement* item_elem, std::vector<PubSubItem>* items) argument
119 ParseRetract(const XmlElement* retract_elem, std::vector<PubSubItem>* items) argument
124 ParseEventItemsElem(const XmlElement* stanza, std::vector<PubSubItem>* items) argument
147 ParsePubSubItemsElem(const XmlElement* stanza, std::vector<PubSubItem>* items) argument
171 std::vector<PubSubItem> items; local
189 std::vector<PubSubItem> items; local
[all...]
/external/icu/icu4c/source/test/depstest/
H A Ddependencies.py17 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[nam
[all...]
/external/chromium_org/ui/webui/resources/js/cr/ui/
H A Dtree.js65 get items() {
105 * tree items as necesary.
131 * of tree items.
148 this.items[this.items.length - 1];
152 this.items[0];
170 itemToSelect = item.items[0];
174 itemToSelect = this.items[0];
177 itemToSelect = this.items[this.items
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_state_cache.c90 for (c = cache->items[hash % cache->size]; c; c = c->next)
93 fprintf(stderr, "bucket %d/%d = %d/%d items\n", hash % cache->size,
97 for (c = cache->items[hash % cache->size]; c; c = c->next) {
109 struct brw_cache_item **items; local
114 items = (struct brw_cache_item**) calloc(1, size * sizeof(*items));
117 for (c = cache->items[i]; c; c = next) {
119 c->next = items[c->hash % size];
120 items[c->hash % size] = c;
123 FREE(cache->items);
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_state_cache.c90 for (c = cache->items[hash % cache->size]; c; c = c->next)
93 fprintf(stderr, "bucket %d/%d = %d/%d items\n", hash % cache->size,
97 for (c = cache->items[hash % cache->size]; c; c = c->next) {
109 struct brw_cache_item **items; local
114 items = (struct brw_cache_item**) calloc(1, size * sizeof(*items));
117 for (c = cache->items[i]; c; c = next) {
119 c->next = items[c->hash % size];
120 items[c->hash % size] = c;
123 FREE(cache->items);
[all...]
/external/chromium_org/chrome/browser/resources/print_preview/settings/
H A Dmedia_size_settings.js88 var getItemForLocale = function(items, locale, languageOnly) {
90 for (var i = 0; i < items.length; i++) {
91 if (getLocaleToCompare(items[i].locale) == locale)
92 return items[i].value;
96 var items = option.custom_display_name_localized;
98 getItemForLocale(items, navigator.language, false) ||
99 getItemForLocale(items, navigator.language, true);
/external/chromium_org/content/shell/renderer/test_runner/
H A Dgamepad_controller.cc182 gamepads_.items[index].connected = true;
185 if (gamepads_.items[i].connected)
192 || !gamepads_.items[index].connected)
194 const WebGamepad& pad = gamepads_.items[index];
202 WebGamepad& pad = gamepads_.items[index];
206 if (gamepads_.items[i].connected)
217 memset(gamepads_.items[index].id, 0, sizeof(gamepads_.items[index].id));
219 gamepads_.items[index].id[i] = *p++;
227 gamepads_.items[inde
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DMixedItemSection.java63 /** {@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
[all...]
/external/chromium_org/third_party/polymer/components/core-layout/
H A Dcore-layout-host.css87 -moz-align-items: flex-start;
88 -webkit-align-items: flex-start;
89 align-items: flex-start;
95 -moz-align-items: center;
96 -webkit-align-items: center;
97 align-items: center;
103 -moz-align-items: flex-end;
104 -webkit-align-items: flex-end;
105 align-items: flex-end;
/external/chromium_org/third_party/polymer/components-chromium/core-layout/
H A Dcore-layout-host.css87 -moz-align-items: flex-start;
88 -webkit-align-items: flex-start;
89 align-items: flex-start;
95 -moz-align-items: center;
96 -webkit-align-items: center;
97 align-items: center;
103 -moz-align-items: flex-end;
104 -webkit-align-items: flex-end;
105 align-items: flex-end;
/external/chromium_org/chrome/browser/safe_browsing/
H A Dsafe_browsing_store.cc24 // 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) { argument
77 DCHECK(items);
79 // Move items from |iter| to |end_iter|, skipping items in |del_set|.
80 typename ItemsT::iterator end_iter = items
[all...]
/external/chromium_org/chrome/tools/build/win/
H A Dsln_deps.py45 items = line.split('"')
47 project.name = items[3]
48 project.path = items[5]
49 project.guid = items[7]
50 project.type = items[1]
51 projects[items[7]] = project

Completed in 704 milliseconds

1234567891011>>