HomeSort by relevance Sort by last modified time
    Searched full:items (Results 1 - 25 of 3729) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/http/tests/appcache/
dynamic-entries-no-cache-expected.txt 3 PASS: applicationCache.items.length is 0
4 PASS: applicationCache.items.item(0) is null
5 PASS: applicationCache.items.item(1) is null
6 PASS: applicationCache.items.item(0xffffffff) is null
7 PASS: applicationCache.items.item(0xfffffffe) is null
8 PASS: applicationCache.items.item(-1) is null
9 PASS: applicationCache.items.item(-2) is null
10 PASS: applicationCache.items[0xfffffffe] is undefined
11 PASS: applicationCache.items[0xffffffff] is undefined
12 PASS: applicationCache.items['0'] is undefine
    [all...]
dynamic-entries-no-cache.html-disabled 54 shouldBe("applicationCache.items.length", "0");
55 shouldBe("applicationCache.items.item(0)", "null");
56 shouldBe("applicationCache.items.item(1)", "null");
57 shouldBe("applicationCache.items.item(0xffffffff)", "null");
58 shouldBe("applicationCache.items.item(0xfffffffe)", "null");
59 shouldBe("applicationCache.items.item(-1)", "null");
60 shouldBe("applicationCache.items.item(-2)", "null");
62 shouldBe("applicationCache.items[0xfffffffe]", "undefined");
63 shouldBe("applicationCache.items[0xffffffff]", "undefined");
66 shouldBe("applicationCache.items['0']", "undefined")
    [all...]
  /external/smack/src/org/jivesoftware/smackx/pubsub/
ItemsExtension.java 22 * <li>It can represent an event containing a list of items that have been published
23 * <li>It can represent an event containing a list of retracted (deleted) items.
24 * <li>It can represent a request to delete a list of items.
25 * <li>It can represent a request to get existing items.
36 protected List<? extends PacketExtension> items; field in class:ItemsExtension
40 /** An items element, which has an optional <b>max_items</b> attribute when requesting items */
41 items(PubSubElementType.ITEMS, "max_items"), enum constant in enum:ItemsExtension.ItemsElementType
67 * Construct an instance with a list representing items that have been published or deleted.
    [all...]
LeafNode.java 30 * All items are published to a node, and typically subscribed to by other
43 * Get information on the items in the node in standard
53 DiscoverItems items = new DiscoverItems(); local
54 items.setTo(to);
55 items.setNode(getId());
56 return (DiscoverItems)SyncPacketSend.getReply(con, items);
60 * Get the current items stored in the node.
72 ItemsExtension itemsElem = (ItemsExtension)result.getExtension(PubSubElementType.ITEMS);
77 * Get the current items stored in the node based
93 ItemsExtension itemsElem = (ItemsExtension)result.getExtension(PubSubElementType.ITEMS);
203 Collection<T> items = new ArrayList<T>(1); local
274 Collection<T> items = new ArrayList<T>(1); local
328 Collection<String> items = new ArrayList<String>(1); local
343 List<Item> items = new ArrayList<Item>(itemIds.size()); local
    [all...]
  /external/webkit/Tools/QueueStatusServer/templates/
updateworkitems.html 2 Update work items for a queue: <input name="queue_name">
4 Work Items:
7 <div><input type="submit" value="Update Work Items"></div>
  /external/qemu/android/utils/
reflist.c 23 return l->u.items;
30 AFREE(l->u.items);
40 /* deferred empty, set all items to NULL
42 void** items = _areflist_items(l); local
43 AARRAY_ZERO(items, l->count);
57 void** items = _areflist_items(l); local
58 void** end = items + l->count;
59 void** ii = items;
63 return (ii - items);
75 void** items; local
102 void** items; local
126 void** items = _areflist_items(l); local
161 void** items = _areflist_items(l); local
192 void** items = _areflist_items(l); local
229 void** items = _areflist_items(l); local
281 void** items; local
    [all...]
vector.c 5 _avector_ensure( void** items, size_t itemSize, unsigned* pMaxItems, unsigned newCount )
14 AASSERT_FAIL("trying to reallocate array of 0-size items (count=%d)\n", newCount);
18 AASSERT_FAIL("trying to reallocate over-sized array of %d-bytes items (%d > %d)\n",
29 *items = _android_array_realloc( *items, itemSize, newMax );
  /external/webkit/Source/WebCore/manual-tests/memory/
xhr-multiple-requests-responseXML.html 27 var items = xmlHttp.responseXML;
30 for ( var i = 0; i < items.childNodes.length; i++ ) {
33 if ( items.childNodes[i].nodeName == "plist" ) {
35 //alert( items.childNodes[i].nodeName );
37 for ( var j = 0; j < items.childNodes[i].childNodes.length; j++) {
40 if ( items.childNodes[i].childNodes[j].nodeName == "dict" ) {
42 //alert( items.childNodes[i].childNodes[j].nodeName );
44 for ( var k = 0; k < items.childNodes[i].childNodes[j].childNodes.length; k++) {
47 if ( items.childNodes[i].childNodes[j].childNodes[k].nodeName == "key" ) {
49 //alert( items.childNodes[i].childNodes[j].childNodes[k].nodeName )
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
p11667.cpp 11 LIST() { nitems = 16; items = new T[nitems]; };
13 LIST(int u) { nitems = u; items = new T[nitems]; };
16 return items[i];
21 T* src = items;
32 if (items) delete[] items;
34 items = newlist;
39 T *items; member in class:LIST
  /ndk/tests/device/test-stlport_static-exception/jni/
p11667.cpp 11 LIST() { nitems = 16; items = new T[nitems]; };
13 LIST(int u) { nitems = u; items = new T[nitems]; };
16 return items[i];
21 T* src = items;
32 if (items) delete[] items;
34 items = newlist;
39 T *items; member in class:LIST
  /external/libsepol/src/
write.c 60 size_t items; local
70 items = put_entry(buf, sizeof(uint32_t), 3, fp);
71 if (items != 3)
76 items = put_entry(&bit, sizeof(uint32_t), 1, fp);
77 if (items != 1)
80 items = put_entry(&map, sizeof(uint64_t), 1, fp);
81 if (items != 1)
106 size_t items, items2; local
120 items = 1; /* item 0 is used for the item count */
122 buf32[items++] = cpu_to_le32(val)
247 size_t items; local
319 size_t items; local
367 size_t items; local
387 size_t items, items2; local
415 size_t items, items2, len; local
443 size_t items, items2, len; local
470 size_t nel, items; local
514 size_t nel, items; local
537 size_t nel, items, len; local
571 size_t items; local
587 size_t items; local
607 unsigned int items, items2; local
652 uint32_t len, items; local
702 uint32_t items, items2, len; local
755 uint32_t len, items; local
781 size_t items, items2; local
810 size_t items, items2, len; local
835 size_t items, items2, len; local
868 int items; local
915 size_t items, items2, len, len2; local
998 size_t items, items2, len; local
1060 size_t items, items2, len; local
1138 size_t items, items2, len; local
1201 size_t nel, items; local
1270 size_t nel, items, len; local
1377 size_t nel = 0, items, len; local
1424 size_t nel, items; local
1473 size_t items, items2; local
1558 size_t items; local
1599 size_t items; local
1621 size_t items; local
1663 size_t items; local
1797 unsigned int items = 2 + scope->decl_ids_len, i; local
1864 size_t items, items2, len; local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
UniformListItem.java 26 * Class that represents a contiguous list of uniform items. Each
30 * <p>This class inherits its alignment from its items, bumped up to
31 * {@code 4} if the items have a looser alignment requirement. If
46 private final List<T> items; field in class:UniformListItem
53 * @param items {@code non-null and non-empty;} list of items to represent
55 public UniformListItem(ItemType itemType, List<T> items) {
56 super(getAlignment(items), writeSize(items));
62 this.items = items
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
UniformListItem.java 26 * Class that represents a contiguous list of uniform items. Each
30 * <p>This class inherits its alignment from its items, bumped up to
31 * {@code 4} if the items have a looser alignment requirement. If
46 private final List<T> items; field in class:UniformListItem
53 * @param items {@code non-null and non-empty;} list of items to represent
55 public UniformListItem(ItemType itemType, List<T> items) {
56 super(getAlignment(items), writeSize(items));
62 this.items = items
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
UniformListItem.java 26 * Class that represents a contiguous list of uniform items. Each
30 * <p>This class inherits its alignment from its items, bumped up to
31 * {@code 4} if the items have a looser alignment requirement. If
46 private final List<T> items; field in class:UniformListItem
53 * @param items {@code non-null and non-empty;} list of items to represent
55 public UniformListItem(ItemType itemType, List<T> items) {
56 super(getAlignment(items), writeSize(items));
62 this.items = items
    [all...]
  /external/oprofile/libutil++/
comma_list.h 3 * Container holding items from a list of comma separated items
31 * setup items array according to str parameters. Implement PP:3.17
45 * return true if value match one the stored value in items
54 container_type items; member in class:comma_list
68 items.clear();
76 items.clear();
79 items.push_back(op_lexical_cast<T>(result[i]));
90 const_iterator cit = items.begin();
91 const_iterator const end = items.end()
    [all...]
  /external/linux-tools-perf/util/
thread_map.c 19 int items; local
24 items = scandir(name, &namelist, filter, NULL);
25 if (items <= 0)
28 threads = malloc(sizeof(*threads) + sizeof(pid_t) * items);
30 for (i = 0; i < items; i++)
32 threads->nr = items;
35 for (i=0; i<items; i++)
  /sdk/templates/activities/BlankActivity/root/src/app_package/
include_onCreateOptionsMenu.java.ftl 3 // Inflate the menu; this adds items to the action bar if it is present.
  /external/chromium/chrome/browser/resources/shared/js/cr/ui/table/
table_selection_model.js 14 * Selected items are stored, not indexes, so selections are preserved
15 * after items reordering (e.g. because of sort).
16 * @param {number=} opt_length The number of items in the selection.
29 * Adjusts the selection after reordering of items in the table.
47 * Adjust the selection by adding or removing a certain numbers of items.
48 * This should be called by the owner of the selection model as items are
53 * @param {number} itemsRemoved Number of items removed.
54 * @param {number} itemsAdded Number of items added.
  /external/openssl/crypto/des/
DES.pm 6 # Items to export into callers namespace by default
10 # Other items we are prepared to export if requested
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
Section.java 42 * A list of the items that this section contains.
43 * If the section has been placed, this list should be in the order that the items
46 protected final ArrayList<T> items; field in class:Section
49 * A HashMap of the items in this section. This is used when interning items, to determine
77 items = new ArrayList<T>();
82 * Finalize the location of all items, and place them starting at the given offset
87 if (items.size() > 0) {
92 for (int i=0; i < items.size(); i++) {
93 T item = items.get(i)
    [all...]
  /frameworks/base/docs/html/design/building-blocks/
lists.jd 12 <p>Lists present multiple line items in a vertical arrangement. They can be used for data selection as
31 <h4>Line Items</h4>
32 <p>List items can accommodate a wide range of data types in different arrangements, including
33 simple single-line items, multi-line items, and custom items with icons, checkboxes, and action
  /external/webkit/Tools/QueueStatusServer/model/
activeworkitems_unittest.py 48 items = ActiveWorkItems.lookup_by_queue("test-queue")
52 self.assertEqual(items.next_item(queued_items, time), 1)
53 self.assertEqual(items.next_item([1], time), None)
54 self.assertEqual(items.next_item([], time), None)
56 self.assertEqual(items.time_for_item(1), time)
57 self.assertEqual(items.time_for_item(2), None)
59 items.expire_item(1)
61 self.assertEqual(items.time_for_item(1), time)
63 items = ActiveWorkItems.lookup_by_queue("test-queue")
64 self.assertEqual(items.time_for_item(1), None
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
Collapser.java 23 * Class used for collapsing data items into groups of similar items. The data items that should be
25 * function that takes an ArrayList of items and returns a list of the same items collapsed into
37 * can be used for example to collapse similar contact data items into a single item.
45 * Collapses a list of Collapsible items into a list of collapsed items. Items are collapsed
74 // Remove the null items
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
Collapser.java 23 * Class used for collapsing data items into groups of similar items. The data items that should be
25 * function that takes an ArrayList of items and returns a list of the same items collapsed into
37 * can be used for example to collapse similar contact data items into a single item.
45 * Collapses a list of Collapsible items into a list of collapsed items. Items are collapsed
70 // Remove the null items
    [all...]
  /frameworks/base/core/java/com/android/internal/view/menu/
ActionMenu.java 129 final ArrayList<ActionMenuItem> items = mItems; local
130 final int itemCount = items.size();
132 if (items.get(i).getItemId() == id) {
149 final ArrayList<ActionMenuItem> items = mItems; local
150 final int itemCount = items.size();
153 if (items.get(i).isVisible()) {
164 final ArrayList<ActionMenuItem> items = mItems; local
165 final int itemCount = items.size();
168 ActionMenuItem item = items.get(i);
201 final ArrayList<ActionMenuItem> items = mItems local
220 final ArrayList<ActionMenuItem> items = mItems; local
233 final ArrayList<ActionMenuItem> items = mItems; local
245 final ArrayList<ActionMenuItem> items = mItems; local
    [all...]

Completed in 681 milliseconds

1 2 3 4 5 6 7 8 91011>>