Searched defs:items (Results 126 - 150 of 366) sorted by relevance

1234567891011>>

/external/clang/utils/analyzer/
H A DCmpRuns.py105 def items(self): member in class:multidict
106 return self.data.items()
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DMixedItemSection.java63 /** {@code non-null;} the items in this part */
64 private final ArrayList<OffsettedItem> items; field in class:MixedItemSection
66 /** {@code non-null;} items that have been explicitly interned */
69 /** {@code non-null;} how to sort the items */
86 * @param sort how the items should be sorted in the final output
92 this.items = new ArrayList<OffsettedItem>(100);
100 public Collection<? extends Item> items() { method in class:MixedItemSection
101 return items;
119 * Gets the size of this instance, in items.
124 return items
[all...]
H A DSection.java25 * 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
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DTimeLineGraph.java82 List items = (List) _enum.nextElement();
83 Object[] fItemsArray=items.toArray();
158 List items = (List) this.fItemGroups.get(groupName);
160 items=new ArrayList();
161 this.fItemGroups.put(groupName, items);
163 items.add(new TimeLineGraphItem(name, description, value, col, display,
171 List items = (List) _enum.nextElement();
172 for (int i = 0; i < items.size(); i++) {
173 TimeLineGraphItem graphItem = (TimeLineGraphItem) items.get(i);
188 List items
261 setRelativeXPosition(TimeLineGraphItem thisItem, List items) argument
[all...]
/external/elfutils/0.153/backends/
H A Di386_corenote.c107 nitems, items); \
121 size_t *nitems, const Ebl_Core_Item **items)
130 *items = tls_items;
119 tls_info(GElf_Word descsz, GElf_Word *regs_offset, size_t *nregloc, const Ebl_Register_Location **reglocs, size_t *nitems, const Ebl_Core_Item **items) argument
/external/icu/icu4c/source/tools/toolutil/
H A Dpackage.h71 * 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/jarjar/src/main/com/tonicsystems/jarjar/util/
H A DClassHeaderReader.java32 private int[] items = new int[1000]; field in class:ClassHeaderReader
74 items = (int[])resizeArray(items, constant_pool_count);
81 items[i] = index + 1;
130 index = readUnsignedShort(items[index]);
131 bin.readFrom(b, items[index]);
/external/libexif/libexif/olympus/
H A Dmnote-olympus-entry.c89 } items[] = { variable in typeref:struct:__anon23674
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[
[all...]
/external/lldb/source/DataFormatters/
H A DDataVisualization.cpp147 TypeCategoryImpl::FormatCategoryItems items,
153 items,
146 AnyMatches(ConstString type_name, TypeCategoryImpl::FormatCategoryItems items, bool only_enabled, const char** matching_category, TypeCategoryImpl::FormatCategoryItems* matching_type) argument
H A DTypeCategoryMap.cpp159 TypeCategoryImpl::FormatCategoryItems items,
170 items,
158 AnyMatches(ConstString type_name, TypeCategoryImpl::FormatCategoryItems items, bool only_enabled, const char** matching_category, TypeCategoryImpl::FormatCategoryItems* matching_type) argument
/external/mesa3d/src/gallium/drivers/svga/include/
H A Dsvga_overlay.h71 // May include zero or more items.
75 } items[1]; member in struct:SVGAEscapeVideoSetRegs
106 } items[1]; member in struct:__anon27498
115 } items[SVGA_VIDEO_NUM_REGS]; member in struct:__anon27500
/external/qemu/android/utils/
H A Dreflist.c23 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/qemu/distrib/zlib-1.2.8/
H A Dzutil.c220 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size) argument
223 ulg bsize = (ulg)items*size;
279 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) argument
282 return _halloc((long)items, size);
300 extern voidp calloc OF((uInt items, uInt size));
304 voidpf ZLIB_INTERNAL zcalloc (opaque, items, size)
306 unsigned items;
309 if (opaque) items += size - size; /* make compiler happy */
310 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
311 (voidpf)calloc(items, siz
[all...]
/external/regex-re2/util/
H A Dbenchmark.cc37 static int64 items; variable
55 items = n;
68 items = 0;
/external/smack/src/org/jivesoftware/smackx/packet/
H A DDataForm.java44 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 o
[all...]
H A DMUCOwner.java38 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);
H A DOfflineMessageRequest.java40 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/zlib/src/
H A Dzutil.c220 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size) argument
223 ulg bsize = (ulg)items*size;
279 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) argument
282 return _halloc((long)items, size);
300 extern voidp calloc OF((uInt items, uInt size));
304 voidpf ZLIB_INTERNAL zcalloc (opaque, items, size)
306 unsigned items;
309 if (opaque) items += size - size; /* make compiler happy */
310 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
311 (voidpf)calloc(items, siz
[all...]
/external/chromium_org/extensions/test/data/
H A Djson_schema_test.js77 items: [
129 [schema.items[0].properties.url.pattern])]);
136 [schema.items[0].properties.id.minimum])]);
300 items: [
312 [formatError("arrayMaxItems", [schema.items.length])]);
326 schema.items[0].optional = true;
337 items: {
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DBitSet.java61 public BitSet(List items) { argument
63 for (int i = 0; i < items.size(); i++) {
64 Integer v = (Integer) items.get(i);
/external/chromium_org/ash/shelf/
H A Dshelf.cc108 const ShelfItem& item = shelf_view_->model()->items()[index];
156 const ShelfItems& items = shelf_model->items(); local
164 if (items[i].type != TYPE_APP_LIST) {
/external/chromium_org/ash/system/tray/
H A Dsystem_tray_bubble.cc40 // A view with some special behaviour for tray items in the popup:
134 const std::vector<ash::SystemTrayItem*>& items,
138 items_(items),
151 const std::vector<ash::SystemTrayItem*>& items,
206 items_ = items;
383 // 2 items, which are the bottom header row and the one just above it.
132 SystemTrayBubble( ash::SystemTray* tray, const std::vector<ash::SystemTrayItem*>& items, BubbleType bubble_type) argument
150 UpdateView( const std::vector<ash::SystemTrayItem*>& items, BubbleType bubble_type) argument
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dchange_list_processor.cc79 const ScopedVector<google_apis::ChangeResource>& items = change_list.items(); local
80 entries_.resize(items.size());
81 parent_resource_ids_.resize(items.size());
83 for (size_t i = 0; i < items.size(); ++i) {
85 *items[i],
98 const ScopedVector<google_apis::FileResource>& items = file_list.items(); local
99 entries_.resize(items.size());
100 parent_resource_ids_.resize(items
[all...]
/external/chromium_org/chrome/browser/chromeos/input_method/
H A Dmock_input_method_engine.cc74 bool MockInputMethodEngine::SetMenuItems(const std::vector<MenuItem>& items) { argument
79 const std::vector<MenuItem>& items) {
78 UpdateMenuItems( const std::vector<MenuItem>& items) argument
/external/chromium_org/chrome/browser/download/
H A Ddownload_path_reservation_tracker_unittest.cc389 items[DownloadPathReservationTracker::kMaxUniqueFiles + 1]; local
406 items[i].reset(CreateDownloadItem(i));
409 items[i].get(),
436 SetDownloadItemState(items[i].get(), DownloadItem::COMPLETE);

Completed in 358 milliseconds

1234567891011>>