HomeSort by relevance Sort by last modified time
    Searched refs:items (Results 76 - 100 of 1677) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
ClipboardUtilitiesChromium.cpp 73 Vector<String> items; local
76 uriList.split('\n', items);
79 for (size_t i = 0; i < items.size(); ++i) {
80 String& line = items[i];
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
builders_unittest.py 40 for name, expected in tests.items():
  /external/chromium_org/third_party/WebKit/public/platform/
WebGamepads.h 47 // Number of valid entries in the items array.
51 WebGamepad items[itemsLengthCap]; member in class:WebKit::WebGamepads
  /external/clang/test/Preprocessor/
c99-6_10_3_4_p9.c 15 showlist(The first, second, and third items.);
16 // CHECK: puts("The first, second, and third items.");
  /external/linux-tools-perf/scripts/perl/Perf-Trace-Util/
Context.c 51 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/
ShadowItemizedOverlay.java 23 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/
ItemEventListener.java 21 * Defines the listener for items being published to a node.
33 * @param items The publishing details.
35 void handlePublishedItems(ItemPublishEvent<T> items);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_set_literal.py 18 (atom=atom< '[' (items=listmaker< any ((',' any)* [',']) >
22 atom< '(' items=testlist_gexp< any ((',' any)* [',']) > ')' >
33 items = fake
35 items = results["items"]
39 literal.extend(n.clone() for n in items.children)
42 literal[-1].prefix = items.next_sibling.prefix
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_set_literal.py 18 (atom=atom< '[' (items=listmaker< any ((',' any)* [',']) >
22 atom< '(' items=testlist_gexp< any ((',' any)* [',']) > ')' >
33 items = fake
35 items = results["items"]
39 literal.extend(n.clone() for n in items.children)
42 literal[-1].prefix = items.next_sibling.prefix
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
ListValueCellEditor.java 51 String[] items = uiListAttribute.getPossibleValues(null); local
52 mItems = new String[items.length];
53 System.arraycopy(items, 0, mItems, 0, items.length);
  /external/smack/src/org/jivesoftware/smackx/packet/
DiscoverItems.java 33 * 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 of the queried XMPP entity.
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/launcher/
browser_launcher_item_controller_unittest.cc 184 return launcher_test->launcher_model_->items()[index];
228 return launcher_model_->items()[index];
244 launcher_model_->items()[0].type);
246 launcher_model_->items()[1].type);
258 launcher_model_->items()[0].type);
260 launcher_model_->items()[1].type);
262 launcher_model_->items()[2].type);
264 launcher_model_->items()[3].type);
268 launcher_model_->items()[0].type);
270 launcher_model_->items()[1].type)
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
zutil.c 216 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
219 ulg bsize = (ulg)items*size;
275 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
278 return _halloc((long)items, size);
296 extern voidp calloc OF((uInt items, uInt size));
300 voidpf zcalloc (opaque, items, size)
302 unsigned items;
305 if (opaque) items += size - size; /* make compiler happy */
306 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
307 (voidpf)calloc(items, size)
    [all...]
  /external/skia/tools/
bench_pictures_cfg_helper.py 33 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/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
EnumerationValuesPropertyEditor.java 42 int items = enumElements.length / 3; local
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/libjingle/source/talk/xmpp/
pubsubclient_unittest.cc 26 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[0].itemid)
    [all...]
pubsubtasks.cc 64 // 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) {
171 std::vector<PubSubItem> items; local
182 std::vector<PubSubItem> items; local
    [all...]
  /external/icu4c/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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_dictviews.py 39 items = d.viewitems()
40 self.assertEqual(len(items), 2)
41 self.assertEqual(set(items), set([(1, 10), ("a", "ABC")]))
42 self.assertEqual(items, set([(1, 10), ("a", "ABC")]))
43 self.assertNotEqual(items, set([(1, 10), ("a", "ABC"), "junk"]))
44 self.assertNotEqual(items, set([(1, 10), ("a", "def")]))
45 self.assertNotEqual(items, set([(1, 10)]))
46 self.assertNotEqual(items, 42)
47 self.assertIn((1, 10), items)
48 self.assertIn(("a", "ABC"), items)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_dictviews.py 39 items = d.viewitems()
40 self.assertEqual(len(items), 2)
41 self.assertEqual(set(items), set([(1, 10), ("a", "ABC")]))
42 self.assertEqual(items, set([(1, 10), ("a", "ABC")]))
43 self.assertNotEqual(items, set([(1, 10), ("a", "ABC"), "junk"]))
44 self.assertNotEqual(items, set([(1, 10), ("a", "def")]))
45 self.assertNotEqual(items, set([(1, 10)]))
46 self.assertNotEqual(items, 42)
47 self.assertIn((1, 10), items)
48 self.assertIn(("a", "ABC"), items)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLSelectElement.cpp 245 const Vector<HTMLElement*>& items = listItems(); local
246 for (unsigned i = 0; i < items.size(); i++) {
247 if (items[i]->hasLocalName(optionTag) && toHTMLOptionElement(items[i])->selected())
248 return toHTMLOptionElement(items[i])->value();
262 const Vector<HTMLElement*>& items = listItems(); local
264 for (unsigned i = 0; i < items.size(); i++) {
265 if (items[i]->hasLocalName(optionTag)) {
266 if (toHTMLOptionElement(items[i])->value() == value) {
303 // Ensure that we've determined selectedness of the items at least once prior to changing the size
457 const Vector<HTMLElement*>& items = listItems(); local
520 const Vector<HTMLElement*>& items = listItems(); local
535 const Vector<HTMLElement*>& items = listItems(); local
576 const Vector<HTMLElement*>& items = listItems(); local
591 const Vector<HTMLElement*>& items = listItems(); local
611 const Vector<HTMLElement*>& items = listItems(); local
634 const Vector<HTMLElement*>& items = listItems(); local
695 Vector<HTMLElement*> items = m_listItems; local
795 const Vector<HTMLElement*>& items = listItems(); local
828 const Vector<HTMLElement*>& items = listItems(); local
870 const Vector<HTMLElement*>& items = listItems(); local
889 const Vector<HTMLElement*>& items = listItems(); local
924 const Vector<HTMLElement*>& items = listItems(); local
934 const Vector<HTMLElement*>& items = listItems(); local
952 const Vector<HTMLElement*>& items = listItems(); local
967 const Vector<HTMLElement*>& items = listItems(); local
1016 const Vector<HTMLElement*>& items = listItems(); local
1037 const Vector<HTMLElement*>& items = listItems(); local
1475 const Vector<HTMLElement*>& items = listItems(); local
1496 const Vector<HTMLElement*>& items = listItems(); local
1531 const Vector<HTMLElement*>& items = listItems(); local
1555 const Vector<HTMLElement*>& items = listItems(); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_state_cache.c 90 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/
brw_state_cache.c 90 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/chrome/browser/importer/
importer_host.cc 101 uint16 items,
126 importer_, &Importer::StartImport, source_profile, items, bridge);
128 CheckForFirefoxLock(source_profile, items, first_run);
154 CheckForLoadedModels(items);
185 uint16 items,
200 void ImporterHost::CheckForLoadedModels(uint16 items) {
203 if ((items & importer::FAVORITES) && !writer_->BookmarkModelIsLoaded()) {
212 if ((items & importer::SEARCH_ENGINES) || (items & importer::FAVORITES)) {
  /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...]

Completed in 5811 milliseconds

1 2 34 5 6 7 8 91011>>