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

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/icu/source/tools/toolutil/
package.h 57 * but the items are left unswapped.
61 * Write a .dat package file with the items in this object.
65 * Also, the items themselves are swapped in-place
74 // find the item in items[], return the non-negative index if found, else the binary-not of the insertion point
79 * indexes for items whose names match the pattern.
122 * @param check will be called with context and any missing items
153 Item *items; member in class:Package
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/include/
svga_overlay.h 71 // May include zero or more items.
75 } items[1]; member in struct:SVGAEscapeVideoSetRegs
106 } items[1]; member in struct:__anon12923
115 } items[SVGA_VIDEO_NUM_REGS]; member in struct:__anon12925
  /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/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
symrec.pxi 258 def items(self): member in class:SymbolTable
  /external/chromium_org/tools/gyp/pylib/gyp/
ordered_dict.py 86 'od.clear() -> None. Remove all items from od.'
130 def items(self): member in class:OrderedDict
131 'od.items() -> list of (key, value) pairs in od'
144 'od.iteritems -> an iterator over the (key, value) items in od'
153 Or if E is an iterable of items, does: for k, v in E: od[k] = v
154 In either case, this is followed by: for k, v in F.items(): od[k] = v
176 for key, value in kwds.items():
212 return '%s(%r)' % (self.__class__.__name__, self.items())
218 items = [[k, self[k]] for k in self]
223 return (self.__class__, (items,), inst_dict
    [all...]
  /external/clang/utils/analyzer/
CmpRuns.py 105 def items(self): member in class:multidict
106 return self.data.items()
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
Section.java 25 * of items of some sort or other.
219 * Gets the collection of all the items in this section.
222 * @return {@code non-null;} the items
224 public abstract Collection<? extends Item> items(); method in class:Section
Statistics.java 56 * Adds the given list of items to the statistics.
58 * @param list {@code non-null;} the list of items to add
61 Collection<? extends Item> items = list.items(); local
62 for (Item item : items) {
  /external/harfbuzz_ng/src/
hb-object-private.hh 85 hb_lockable_set_t<hb_user_data_item_t, hb_mutex_t> items; member in struct:hb_user_data_array_t
87 inline void init (void) { lock.init (); items.init (); }
96 inline void finish (void) { items.finish (lock); lock.finish (); }
  /external/icu4c/tools/toolutil/
package.h 71 * but the items are left unswapped.
75 * Write a .dat package file with the items in this object.
79 * Also, the items themselves are swapped in-place
88 // find the item in items[], return the non-negative index if found, else the binary-not of the insertion point
93 * indexes for items whose names match the pattern.
136 * @param check will be called with context and any missing items
170 Item *items; member in class:Package
  /external/libexif/libexif/olympus/
mnote-olympus-entry.c 89 } items[] = { variable in typeref:struct:__anon20355
436 for (i = 0; (items[i].tag && items[i].tag != entry->tag); i++)
438 if (!items[i].tag) {
442 CF (entry->format, items[i].fmt, v, maxlen);
444 for (j = 0; items[i].elem[j].string &&
445 (items[i].elem[j].index < vs); j++);
446 if (items[i].elem[j].index != vs) {
450 strncpy (v, _(items[i].elem[j].string), maxlen);
506 for (i = 0; (items[i].tag && items[i].tag != entry->tag); i++
    [all...]
  /external/libselinux/src/
label_android_property.c 87 int items, len; local
103 items = sscanf(line_buf, "%255s %255s", prop, context);
104 if (items != 2) {
  /external/mesa3d/src/gallium/drivers/svga/include/
svga_overlay.h 71 // May include zero or more items.
75 } items[1]; member in struct:SVGAEscapeVideoSetRegs
106 } items[1]; member in struct:__anon23390
115 } items[SVGA_VIDEO_NUM_REGS]; member in struct:__anon23392
  /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/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...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
DrawableResourceLoader.java 137 NodeList items = document.getElementsByTagName("item"); local
138 int[] drawableIds = new int[items.getLength()];
140 for (int i = 0; i < items.getLength(); i++) {
144 Node item = items.item(i);
163 NodeList items = d.getElementsByTagName("item"); local
164 for (int i = 0; i < items.getLength(); i++) {
165 Node node = items.item(i);
  /external/smack/src/org/jivesoftware/smackx/
GatewayManager.java 65 DiscoverItems items = sdManager.discoverItems(connection.getHost()); local
66 Iterator<Item> iter = items.getItems();
OfflineMessageManager.java 114 DiscoverItems items = ServiceDiscoveryManager.getInstanceFor(connection).discoverItems( local
116 for (Iterator<DiscoverItems.Item> it = items.getItems(); it.hasNext();) {
  /external/smack/src/org/jivesoftware/smackx/packet/
DataForm.java 44 private final List<Item> items = new ArrayList<Item>(); field in class:DataForm
105 * Returns an Iterator for the items returned from a search.
107 * @return an Iterator for the items returned from a search.
110 synchronized (items) {
111 return Collections.unmodifiableList(new ArrayList<Item>(items)).iterator();
194 synchronized (items) {
195 items.add(item);
228 // Loop through all the items returned from a search and append them to the string buffer
268 // Loop through all the form items and append them to the string buffer
280 * Represents items of reported data
    [all...]
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...]
MUCAdmin.java 39 private List<Item> items = new ArrayList<Item>(); field in class:MUCAdmin
49 synchronized (items) {
50 return Collections.unmodifiableList(new ArrayList<Item>(items)).iterator();
60 synchronized (items) {
61 items.add(item);
68 synchronized (items) {
69 for (int i = 0; i < items.size(); i++) {
70 Item item = items.get(i);
MUCOwner.java 38 private List<Item> items = new ArrayList<Item>(); field in class:MUCOwner
49 synchronized (items) {
50 return Collections.unmodifiableList(new ArrayList<Item>(items)).iterator();
82 synchronized (items) {
83 items.add(item);
90 synchronized (items) {
91 for (int i = 0; i < items.size(); i++) {
92 Item item = (Item) items.get(i);
OfflineMessageRequest.java 40 private List<Item> items = new ArrayList<Item>(); field in class:OfflineMessageRequest
52 synchronized (items) {
53 return Collections.unmodifiableList(new ArrayList<Item>(items)).iterator();
63 synchronized (items) {
64 items.add(item);
107 synchronized (items) {
108 for (int i = 0; i < items.size(); i++) {
109 Item item = items.get(i);
  /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...]
PubSubManager.java 192 DiscoverItems items = new DiscoverItems(); local
195 items.setNode(nodeId);
196 items.setTo(to);
197 DiscoverItems nodeItems = (DiscoverItems)SyncPacketSend.getReply(con, items);

Completed in 250 milliseconds

1 2 3 4 5 67 8 91011>>