Searched defs:items (Results 26 - 50 of 199) sorted by relevance

12345678

/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DTypeIdsSection.java50 public Collection<? extends Item> items() { method in class:TypeIdsSection
187 for (Object i : items()) {
H A DAnnotationSetItem.java38 * {@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[
[all...]
H A DClassDefsSection.java57 public Collection<? extends Item> items() { method in class:ClassDefsSection
H A DUniformListItem.java26 * 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) { argument
56 super(getAlignment(items), writeSize(items));
62 this.items
74 getAlignment(List<? extends OffsettedItem> items) argument
93 writeSize(List<? extends OffsettedItem> items) argument
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DStringComboPropertyEditor.java30 public StringComboPropertyEditor(String... items) { argument
31 m_items = items;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
H A DStringsDialog.java51 * Sets the items to edit.
53 public void setItems(String[] items) { argument
54 setText(Joiner.on('\n').join(items));
58 * @return the edited items.
/external/webkit/Source/WebCore/bindings/js/
H A DJSInspectorFrontendHostCustom.cpp91 Vector<ContextMenuItem*> items; local
105 items.append(new ContextMenuItem(SeparatorType,
115 items.append(menuItem);
119 impl()->showContextMenu(event, items);
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8InspectorFrontendHostCustom.cpp79 Vector<ContextMenuItem*> items; local
92 items.append(new ContextMenuItem(SeparatorType,
102 items.append(menuItem);
107 frontendHost->showContextMenu(event, items);
/external/webkit/Source/WebCore/html/
H A DFormDataList.h70 const Vector<Item>& items() const { return m_items; } function in class:WebCore::FormDataList
/external/webkit/Source/WebCore/platform/graphics/pango/
H A DGlyphPageTreeNodePango.cpp48 GList* items = pango_itemize(context, buffer, 0, length, NULL, NULL); local
50 if (g_list_length(items) == 1) {
51 PangoItem* item = reinterpret_cast<PangoItem*>(items->data);
68 g_list_foreach(items, (GFunc)pango_item_free, NULL);
69 g_list_free(items);
/external/webkit/Source/WebCore/platform/network/
H A DBlobData.cpp93 void BlobData::swapItems(BlobDataItemList& items) argument
95 m_items.swap(items);
H A DBlobRegistryImpl.cpp85 void BlobRegistryImpl::appendStorageItems(BlobStorageData* blobStorageData, const BlobDataItemList& items) argument
87 for (BlobDataItemList::const_iterator iter = items.begin(); iter != items.end(); ++iter) {
97 void BlobRegistryImpl::appendStorageItems(BlobStorageData* blobStorageData, const BlobDataItemList& items, long long offset, long long length) argument
101 BlobDataItemList::const_iterator iter = items.begin();
103 for (; iter != items.end(); ++iter) {
111 for (; iter != items.end() && length > 0; ++iter) {
131 // The blob data is stored in the "canonical" way. That is, it only contains a list of Data and File items.
134 // All the Blob items in the passing blob data are resolved and expanded into a set of Data and File items
[all...]
/external/webkit/Source/WebCore/platform/qt/
H A DContextMenuQt.cpp76 Vector<ContextMenuItem> contextMenuItemVector(const QList<ContextMenuItem>* items) argument
78 int itemCount = items->size();
81 menuItemVector.append(items->at(i));
/external/webkit/Source/WebKit2/UIProcess/qt/
H A DWebContextMenuProxyQt.cpp83 void WebContextMenuProxyQt::showContextMenu(const IntPoint& position, const Vector<WebContextMenuItemData>& items) argument
85 if (items.isEmpty())
88 OwnPtr<QMenu> menu = createContextMenu(items);
90 // We send the signal, even with no items, because the client should be able to show custom items
103 PassOwnPtr<QMenu> WebContextMenuProxyQt::createContextMenu(const Vector<WebContextMenuItemData>& items) const
106 for (int i = 0; i < items.size(); ++i) {
107 const WebContextMenuItemData& item = items.at(i);
/external/bison/src/
H A Dstate.h29 Each state of the machine is described by a set of items --
32 state. These symbols at these items are the allowable inputs that
46 Each core contains a vector of NITEMS items which are the indices
47 in the RITEMS vector of the items that are selected in this state.
213 /* Its items. Must be last, since ITEMS can be arbitrarily large.
216 item_number items[1]; member in struct:state
222 /* Create a new state with ACCESSING_SYMBOL for those items. */
/external/chromium/chrome/browser/importer/
H A Dprofile_import_process_host.cc32 uint16 items,
58 source_profile, items, localized_strings, import_to_bookmark_bar));
30 StartProfileImportProcess( const importer::SourceProfile& source_profile, uint16 items, bool import_to_bookmark_bar) argument
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
H A Djstemplate_test.js27 items: [ 'A', 'B', 'C', '' ]
43 d.items[1] = 'BB';
53 d.items.pop();
54 d.items.pop();
63 d.items.pop();
72 d.items.pop();
80 d.items.push('D');
/external/markdown/markdown/
H A Dodict.py57 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/openssl/crypto/pqueue/
H A Dpqueue.c66 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
[all...]
/external/qemu/android/tools/
H A Dgen-hw-config.py58 # 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/
H A Dreflist.h27 * - '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::__anon10897
56 /* Return the number of items in a list */
/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DReadContext.java39 * Namely, it handles "pre-creating" items when an item needs to resolve some other item
40 * that it references, and keeps track of those pre-created items, so the corresponding section
41 * for the pre-created items uses them, instead of creating new items
169 * Sets the items for the specified section. This should be called by an offsetted section
170 * after it is finished reading in all its items.
172 * @param items the full list of items in the section, ordered by offset
174 public void setItemsForSection(ItemType itemType, List<? extends Item> items) { argument
179 sa.ensureCapacity(items
[all...]
H A DSection.java42 * 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
[all...]
/external/stlport/test/eh/
H A Dtest_algo.cpp41 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
/external/webkit/Source/WebCore/dom/
H A DOptionElement.cpp56 const Vector<Element*>& items = selectElement->listItems(); local
57 int length = items.size();
60 if (!isOptionElement(items[i]))
62 if (items[i] == element)

Completed in 985 milliseconds

12345678