HomeSort by relevance Sort by last modified time
    Searched defs:items (Results 101 - 125 of 525) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/re2/util/
benchmark.cc 37 static int64 items; variable
55 items = n;
68 items = 0;
  /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()))
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
AnnotationSetItem.java 38 * {@code non-null;} set of annotations as individual items in an array.
42 private final AnnotationItem[] items; field in class:AnnotationSetItem
53 this.items = new AnnotationItem[annotations.size()];
57 items[at] = new AnnotationItem(a);
117 int size = items.length;
120 items[i] = byteData.intern(items[i]);
128 AnnotationItem.sortByTypeIdIndex(items);
135 int size = items.length;
145 AnnotationItem item = items[i]
    [all...]
ClassDefsSection.java 57 public Collection<? extends Item> items() { method in class:ClassDefsSection
ProtoIdsSection.java 50 public Collection<? extends Item> items() { method in class:ProtoIdsSection
135 for (Object i : items()) {
StringIdsSection.java 52 public Collection<? extends Item> items() { method in class:StringIdsSection
TypeIdsSection.java 50 public Collection<? extends Item> items() { method in class:TypeIdsSection
187 for (Object i : items()) {
UniformItemSection.java 26 * {@link Item} objects. Each of the items must have the same size in
46 Collection<? extends Item> items = items(); local
47 int sz = items.size();
54 return sz * items.iterator().next().writeSize();
75 for (Item one : items()) {
86 for (Item one : items()) {
96 * Since all items must be the same size, we can use the size
106 * Alters or picks the order for items in this instance if desired,
107 * so that subsequent calls to {@link #items} will yield
    [all...]
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/emma/core/java12/com/vladium/emma/report/
Item.java 52 final IItem [] items = new IItem [m_children.size ()]; local
53 m_children.toArray (items);
55 Arrays.sort (items, order);
57 return Arrays.asList (items).iterator ();
  /external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
Coordinate.java 100 String[] items = coOrdinate.split("°"); local
101 int deg = Integer.valueOf(items[0]);
103 items = items[1].split("'");
104 float minsDecMins = Float.valueOf(items[0]);
105 char quad = items[1].charAt(0);
  /external/markdown/markdown/
odict.py 57 def items(self): member in class:OrderedDict
78 for k, v in dict_.items():
112 return '{%s}' % ', '.join(['%r: %r' % (k, v) for k, v in self.items()])
  /external/mesa3d/src/mesa/program/
prog_cache.c 47 struct cache_item **items; member in struct:gl_program_cache
84 struct cache_item **items; local
91 items = (struct cache_item**) malloc(size * sizeof(*items));
92 memset(items, 0, size * sizeof(*items));
95 for (c = cache->items[i]; c; c = next) {
97 c->next = items[c->hash % size];
98 items[c->hash % size] = c;
101 free(cache->items);
    [all...]
  /external/openssl/crypto/pqueue/
pqueue.c 66 pitem *items; member in struct:_pqueue
115 if (pq->items == NULL)
117 pq->items = item;
121 for(curr = NULL, next = pq->items;
133 pq->items = item;
153 return pq->items;
159 pitem *item = pq->items;
161 if (pq->items != NULL)
162 pq->items = pq->items->next
    [all...]
  /external/qemu/android/tools/
gen-hw-config.py 58 # parse the source file and record items
60 # support files without sections, or multiply defined items
62 items = [] variable
109 if lastItem: items.append(lastItem)
115 items.append(lastItem)
133 for item in items:
  /external/qemu/android/utils/
reflist.h 27 * - 'count' is the number of items in the list
29 * always >= 'count'. Some slots correspond to deleted items
33 * - 'u.items' is the slot array if 'max > 1'
42 void** items; member in union:ARefList::__anon24776
56 /* Return the number of items in a list */
  /external/regex-re2/util/
benchmark.cc 37 static int64 items; variable
55 items = n;
68 items = 0;
  /external/smack/src/org/jivesoftware/smack/provider/
PrivacyProvider.java 84 ArrayList<PrivacyItem> items = new ArrayList<PrivacyItem>(); local
89 items.add(parseItem(parser));
99 privacy.setPrivacyList(listName, items);
  /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...]
  /external/stlport/test/eh/
test_algo.cpp 41 SortClass* begin() { return items; }
42 const SortClass* begin() const { return items; }
43 SortClass* end() { return items + kBufferSize; }
44 const SortClass* end() const { return items + kBufferSize; }
69 SortClass items[kBufferSize]; member in struct:SortBuffer
115 // Check that adjacent items with the same value haven't been
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ComboAlbum.java 23 // ComboAlbum combines multiple media sets into one. It lists all media items
43 ArrayList<MediaItem> items = new ArrayList<MediaItem>(); local
50 items.addAll(fetchItems);
57 return items;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/
headers.py 115 def items(self): member in class:Headers
164 for k, v in _params.items():
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/
headers.py 115 def items(self): member in class:Headers
164 for k, v in _params.items():
  /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/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
ItemLocationBox.java 65 public List<Item> items = new LinkedList<Item>(); field in class:ItemLocationBox
76 for (Item item : items) {
92 IsoTypeWriter.writeUInt16(byteBuffer, items.size());
93 for (Item item : items) {
112 items.add(new Item(content));
150 return items;
153 public void setItems(List<Item> items) {
154 this.items = items;

Completed in 713 milliseconds

1 2 3 45 6 7 8 91011>>