HomeSort by relevance Sort by last modified time
    Searched full:items (Results 226 - 250 of 7086) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
MemberIdsSection.java 44 if (items().size() > MAX_MEMBERS) {
46 throw new DexException("Too many " + memberType + ": " + items().size()
50 for (Object i : items()) {
  /external/elfutils/backends/
x86_corenote.c 32 regs_offset, nregloc, reglocs, nitems, items);
37 size_t *nitems, const Ebl_Core_Item **items)
49 *items = &ioperm_item;
  /external/fonttools/Lib/fontTools/ttLib/tables/
otBase.py 46 stats = sorted([(v, k) for k, v in cachingStats.items()])
60 - For simple items, the write method adds a string to the
61 writer's self.items list.
62 - For Struct/Table/Subtable items, it add first adds new writer to the
63 to the writer's self.items, then calls the item's compile method.
65 each writer representing a table, and the writer.items list containing
195 self.items = []
243 for item in self.items:
255 items = list(self.items) # make a shallow cop
    [all...]
  /external/guice/extensions/multibindings/src/com/google/inject/multibindings/
ProvidesIntoSet.java 29 * Annotates methods of a {@link Module} to add items to a {@link Multibinder}.
43 * will add two items to the {@code @Named("urls") Set<String>} set. The items are bound as
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/
ArraySelection.java 10 /** A selection that supports range selection by knowing about the array of items being selected.
51 /** Removes objects from the selection that are no longer in the items array. If {@link #getRequired()} is true and there is no
59 for (Iterator<T> iter = items().iterator(); iter.hasNext();) {
  /external/pdfium/third_party/zlib_v128/
zutil.c 222 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size)
225 ulg bsize = (ulg)items*size;
281 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size)
284 return _halloc((long)items, size);
302 extern voidp calloc OF((uInt items, uInt size));
306 voidpf ZLIB_INTERNAL zcalloc (opaque, items, size)
308 unsigned items;
311 if (opaque) items += size - size; /* make compiler happy */
312 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
313 (voidpf)calloc(items, size)
    [all...]
  /external/webrtc/webrtc/libjingle/xmpp/
discoitemsquerytask.cc 35 std::vector<DiscoItem> items; local
41 items.push_back(item);
44 SignalResult(items);
discoitemsquerytask.h 11 // Fires a disco items query, such as the following example:
17 // <query xmlns=' http://jabber.org/protocol/disco#items'
27 // <query xmlns=' http://jabber.org/protocol/disco#items '
  /frameworks/base/core/java/android/widget/
ListAdapter.java 29 * Indicates whether all the items in this adapter are enabled. If the
31 * it will take effect. If true, it means all items are selectable and
34 * @return True if all items are enabled, false otherwise.
  /frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
GridTest.java 31 Provider(int[] items) {
32 mItems = items;
33 mCount = items.length;
  /packages/apps/Launcher3/src/com/android/launcher3/
DragSource.java 30 * @return whether items dragged from this source supports
35 * @return whether items dragged from this source supports 'App Info'
40 * @return whether items dragged from this source supports 'Delete' drop target (e.g. to remove
  /packages/apps/Stk/src/com/android/stk/
StkMenuAdapter.java 32 * Icon list view adapter to show the list of STK items.
38 public StkMenuAdapter(Context context, List<Item> items,
40 super(context, 0, items);
  /packages/apps/TV/src/com/android/tv/ui/
DialogUtils.java 49 CharSequence[] items = new CharSequence[itemResIds.length]; local
52 items[i] = res.getString(itemResIds[i]);
55 .setItems(items, onClickListener)
  /packages/apps/TV/src/com/android/tv/ui/sidepanel/
DisplayModeFragment.java 44 List<Item> items = new ArrayList<>(); local
46 items.add(new DisplayModeRadioItem(i));
48 return items;
  /prebuilts/gdb/darwin-x86/include/python2.7/
listobject.h 6 This is a mutable type: the list items can be changed, and items can be
35 * Items must normally not be NULL, except during construction when
  /prebuilts/gdb/linux-x86/include/python2.7/
listobject.h 6 This is a mutable type: the list items can be changed, and items can be
35 * Items must normally not be NULL, except during construction when
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
listobject.h 6 This is a mutable type: the list items can be changed, and items can be
35 * Items must normally not be NULL, except during construction when
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
listobject.h 6 This is a mutable type: the list items can be changed, and items can be
35 * Items must normally not be NULL, except during construction when
  /libcore/luni/src/main/java/java/util/concurrent/
ArrayBlockingQueue.java 61 * even for the items array, which is default-serialized, even if
67 /** The queued items */
68 final Object[] items; field in class:ArrayBlockingQueue
70 /** items index for next take, poll, peek or remove */
73 /** items index for next put, offer, or add */
106 return ((i == 0) ? items.length : i) - 1;
114 return (E) items[i];
123 // assert items[putIndex] == null;
124 final Object[] items = this.items; local
138 final Object[] items = this.items; local
159 final Object[] items = this.items; local
454 final Object[] items = this.items; local
485 final Object[] items = this.items; local
517 final Object[] items = this.items; local
568 final Object[] items = this.items; local
601 final Object[] items = this.items; local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
MemberIdsSection.java 50 if (items().size() > DexFormat.MAX_MEMBER_IDX + 1) {
54 for (Object i : items()) {
62 for (Object member : items()) {
78 memberType, items().size(), DexFormat.MAX_MEMBER_IDX + 1);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List16.java 33 * items.
57 mode.setTitle("Select Items");
69 " items", Toast.LENGTH_SHORT).show();
94 mode.setSubtitle("" + checkedCount + " items selected");
  /external/chromium-trace/catapult/third_party/Paste/docs/modules/
httpheaders.txt 5 I just don't feel like documenting the items...
  /external/chromium-trace/catapult/third_party/WebOb/webob/
headers.py 45 items = self._items
46 for i in range(len(items)-1, -1, -1):
47 if items[i][0].lower() == norm_key:
48 del items[i]
53 items = self._items
55 for i in range(len(items)-1, -1, -1):
56 if items[i][0].lower() == key:
57 del items[i]
106 header2key = dict([(v.upper(),k) for (k,v) in key2header.items()])
  /external/chromium-trace/catapult/third_party/polymer/components/iron-menu-behavior/
iron-menu-behavior.html 38 * The attribute to use on menu items to look up the item title. Typing the first
59 'iron-items-changed': '_onIronItemsChanged'
96 * other items.
101 this.items.forEach(function(item) {
127 for (var i = 0, item; item = this.items[i]; i++) {
141 * menu, disabled items will be skipped.
144 var length = this.items.length;
147 var item = this.items[(curFocusIndex - i + length) % length];
157 * menu, disabled items will be skipped.
160 var length = this.items.length
    [all...]
  /external/chromium-trace/catapult/third_party/polymer/components/iron-selector/test/
content.html 79 test('get items', function() {
80 assert.equal(s1.$.selector.items.length, 4);
98 // check items length
99 assert.equal(s1.$.selector.items.length, 5);
120 test('get items', function() {
121 assert.equal(s2.$.selector.items.length, 4);
139 // check items length
140 assert.equal(s2.$.selector.items.length, 5);
150 t.items = [{name:'item0'}, {name: 'item1'}, {name: 'item2'}, {name: 'item3'}];

Completed in 3018 milliseconds

1 2 3 4 5 6 7 8 91011>>