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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/net/third_party/nss/ssl/bodge/
secitem_array.c 22 SECItem *items; member in struct:SECItemArrayStr
47 PORT_Assert(array->items == NULL);
54 result->items = PORT_ArenaZNewArray(arena, SECItem, len);
56 result->items = PORT_ZNewArray(SECItem, len);
58 if (result->items == NULL) {
62 result->items = NULL;
76 array->items = NULL;
96 if (!array || !array->len || !array->items)
100 SECItem *item = &array->items[i];
110 PORT_Free(array->items);
    [all...]
  /external/chromium_org/sandbox/win/src/
shared_handles.h 29 // Use it for a small number of items, since internaly uses linear seach
94 SharedItem* items; member in struct:sandbox::SharedHandles::SharedMem
  /external/chromium_org/third_party/WebKit/Source/core/html/
FormDataList.h 73 const Vector<Item>& items() const { return m_items; } function in class:WebCore::FormDataList
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
lru_cache.py 127 def items(self): member in class:LRUCache
128 return [(key, node.value) for key, node in self._dict.items()]
  /external/chromium_org/third_party/bintrees/bintrees/
treeslice.py 20 return tpl % ", ".join( ("%r: %r" % item for item in self.items()) )
69 def items(self): member in class:TreeSlice
  /external/clang/test/CodeGenCXX/
typeid-cxx11.cpp 22 constexpr Item items[] = { member in namespace:Test1
27 constexpr auto &x = items[0].ti;
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
HeaderSection.java 54 public Collection<? extends Item> items() { method in class:HeaderSection
MapItem.java 53 * {@code > 0;} count of items covered; {@code 1} if this
73 if (mapSection.items().size() != 0) {
75 "mapSection.items().size() != 0");
78 ArrayList<MapItem> items = new ArrayList<MapItem>(50); local
86 for (Item item : section.items()) {
90 items.add(new MapItem(currentType, section,
102 // Add a MapItem for the final items in the section.
103 items.add(new MapItem(currentType, section,
107 items.add(new MapItem(mapSection));
112 new UniformListItem<MapItem>(ItemType.TYPE_MAP_LIST, items));
    [all...]
  /external/libexif/libexif/fuji/
mnote-fuji-entry.c 59 } items[] = { variable in typeref:struct:__anon20352
233 for (i = 0; (items[i].tag && items[i].tag != entry->tag); i++);
234 if (!items[i].tag) {
241 for (j = 0; items[i].elem[j].string &&
242 (items[i].elem[j].index < vs); j++);
243 if (items[i].elem[j].index != vs) {
248 strncpy (val, _(items[i].elem[j].string), maxlen);
  /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/smack/src/org/jivesoftware/smack/
PrivacyList.java 33 * {@link PrivacyItem Privacy Items} can handle different kind of blocking communications based on JID, group,
47 private List<PrivacyItem> items; field in class:PrivacyList
55 this.items = privacyItems;
67 return items;
  /external/smack/src/org/jivesoftware/smackx/pubsub/
AffiliationsExtension.java 27 protected List<Affiliation> items = Collections.EMPTY_LIST; field in class:AffiliationsExtension
39 items = affiliationList;
53 items = affiliationList;
58 return items;
64 if ((items == null) || (items.size() == 0))
80 for (Affiliation item : items)
EventElementType.java 33 /** Items have been published to a node */
34 items, enum constant in enum:EventElementType
36 /** All items have been purged from a node */
ItemPublishEvent.java 27 private List<T> items; field in class:ItemPublishEvent
40 items = eventItems;
56 items = eventItems;
74 items = eventItems;
87 return Collections.unmodifiableList(items);
91 * Indicates whether this event was delayed. That is, the items
98 * @return true if the items are delayed, false otherwise.
106 * Gets the original date the items were published. This is only
109 * @return Date items were published if {@link #isDelayed()} is true, null otherwise.
PublishItem.java 26 protected Collection<T> items; field in class:PublishItem
37 items = new ArrayList<T>(1);
38 items.add(toPublish);
42 * Construct a request to publish multiple items to a node.
50 items = toPublish;
62 for (Item item : items)
SubscriptionsExtension.java 26 protected List<Subscription> items = Collections.EMPTY_LIST; field in class:SubscriptionsExtension
38 items = subList;
52 items = subList;
62 return items;
68 if ((items == null) || (items.size() == 0))
85 for (Subscription item : items)
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
IndexedSection.java 47 for (int i = 0; i < items.size(); i++) {
49 items.set(i, item);
75 return items.get(index);
OffsettedSection.java 40 for (int i = 0; i < items.size(); i++) {
41 assert items.get(i) == null;
47 items.set(i, item);
51 readContext.setItemsForSection(ItemType, items);
  /system/core/toolbox/
dynarray.h 10 void** items; member in struct:__anon60989
30 * remove items from the array during iteration.
36 _item_type _item = (_item_type)(_array)->items[_nn_##__LINE__]; \
58 * This macro is only intended for simple uses. Do not add or remove items
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
MapItem.java 53 * {@code > 0;} count of items covered; {@code 1} if this
73 if (mapSection.items().size() != 0) {
75 "mapSection.items().size() != 0");
78 ArrayList<MapItem> items = new ArrayList<MapItem>(50); local
86 for (Item item : section.items()) {
90 items.add(new MapItem(currentType, section,
102 // Add a MapItem for the final items in the section.
103 items.add(new MapItem(currentType, section,
107 items.add(new MapItem(mapSection));
112 new UniformListItem<MapItem>(ItemType.TYPE_MAP_LIST, items));
    [all...]
FieldIdsSection.java 50 public Collection<? extends Item> items() { method in class:FieldIdsSection
MethodIdsSection.java 50 public Collection<? extends Item> items() { method in class:MethodIdsSection
  /dalvik/dx/src/com/android/dx/dex/file/
MapItem.java 52 * {@code > 0;} count of items covered; {@code 1} if this
72 if (mapSection.items().size() != 0) {
74 "mapSection.items().size() != 0");
77 ArrayList<MapItem> items = new ArrayList<MapItem>(50); local
85 for (Item item : section.items()) {
89 items.add(new MapItem(currentType, section,
101 // Add a MapItem for the final items in the section.
102 items.add(new MapItem(currentType, section,
106 items.add(new MapItem(mapSection));
111 new UniformListItem<MapItem>(ItemType.TYPE_MAP_LIST, items));
    [all...]
FieldIdsSection.java 50 public Collection<? extends Item> items() { method in class:FieldIdsSection
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
GLCallGroups.java 150 List<GLCallNode> items = new ArrayList<GLCallNode>(); local
164 items.add(group);
177 items.add(new GLLeafNode(c));
184 items.add(leaf);
189 return items;
193 List<GLCallNode> items = new ArrayList<GLCallNode>(); local
197 items.add(new GLLeafNode(calls.get(i)));
200 return items;

Completed in 255 milliseconds

12 3 4 5 6 7 8 91011>>