Searched refs:item (Results 376 - 400 of 1876) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/appmenu/
H A DAppMenuAdapter.java37 * Regular Android menu item that contains a title and an icon if icon is specified.
41 * Menu item that has two buttons, the first one is a title and the second one is an icon.
42 * It is different from the regular menu item because it contains two separate buttons.
46 * Menu item that has two buttons. Every one of these buttons is displayed as an icon.
50 * Menu item that has three buttons. Every one of these buttons is displayed as an icon.
54 * Menu item that has four buttons. Every one of these buttons is displayed as an icon.
58 * Menu item that has two buttons, the first one is a title and the second is a menu icon.
108 MenuItem item = getItem(position);
110 int viewCount = item.hasSubMenu() ? item
305 setupImageButton(ImageButton button, final MenuItem item) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMNodeList.java99 * Returns the <code>index</code>th item in the collection. If
107 public Node item(int index) method in class:DTMNodeList
110 int handle=m_iter.item(index);
/external/chromium_org/chrome/browser/download/
H A Ddownload_file_picker.h33 // Display a file picker dialog for |item|. The |suggested_path| will be used
35 // invoked even if |item| is destroyed prior to the file picker completing.
36 static void ShowFilePicker(content::DownloadItem* item,
41 DownloadFilePicker(content::DownloadItem* item,
/external/chromium_org/chrome/browser/resources/options/chromeos/
H A Dbluetooth_add_device_overlay.js55 var item = $('bluetooth-unpaired-devices-list').selectedItem;
58 // be just remembered and later reported as "item.paired" = true. The
60 // * No item is selected (item is undefined).
61 // * Paired devices (item.paired is true) are already paired and a new
64 // * "Connecting" devices (item.connecting is true) are in the process
67 var disabled = !item || item.paired || item.connecting;
/external/chromium_org/chrome/browser/resources/quota_internals/
H A Dmain.css22 .tree-item:not([may-have-children]) > .tree-row > .tree-label {
/external/chromium_org/sandbox/win/src/
H A Dshared_handles.cc41 empty_slot->item = handle;
54 *handle = found->item;
/external/chromium_org/third_party/WebKit/Source/core/clipboard/
H A DDataTransferItemList.idl38 [ImplementedAs=item] getter DataTransferItem (unsigned long index);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSKeyframesRule.idl34 [ImplementedAs=item, NotEnumerable] getter CSSKeyframeRule (unsigned long index);
H A DWebKitCSSFilterValue.idl46 [ImplementedAs=item] getter CSSValue (unsigned long index);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMStringMap.idl35 [ImplementedAs=item] getter DOMString (DOMString name);
H A DDOMTokenList.idl30 [TreatReturnedNullStringAs=Null] getter DOMString item(unsigned long index);
H A DTouchList.h52 Touch* item(unsigned);
53 const Touch* item(unsigned) const;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLDataListOptionsCollection.h21 HTMLOptionElement* item(unsigned offset) const { return toHTMLOptionElement(HTMLCollection::item(offset)); } function in class:blink::HTMLDataListOptionsCollection
H A DHTMLOptionsCollection.h39 HTMLOptionElement* item(unsigned offset) const { return toHTMLOptionElement(HTMLCollection::item(offset)); } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/plugins/
H A DMimeTypeArray.idl26 getter MimeType item([Default=Undefined] optional unsigned long index);
H A DPluginArray.idl26 getter Plugin item([Default=Undefined] optional unsigned long index);
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dpqueue.h96 /* pitem_new allocates a fresh priority queue item that points at |data| and
98 * expressed in big-endian form. It returns the fresh item, or NULL on
102 /* pitem_free frees |item|, but not any data that it points to. */
103 OPENSSL_EXPORT void pitem_free(pitem *item);
108 /* pqueue_peek returns the item with the smallest priority from |pq|, or NULL
112 /* pqueue_find returns the item whose priority matches |prio64be| or NULL if no
113 * such item exists. */
119 /* pqueue_insert inserts |item| into |pq| and returns item. */
120 OPENSSL_EXPORT pitem *pqueue_insert(pqueue pq, pitem *item);
[all...]
/external/chromium_org/third_party/boringssl/src/ssl/
H A Dd1_both.c555 pitem *item; local
560 item = pqueue_peek(s->d1->buffered_messages);
561 if ( item == NULL)
564 frag = (hm_fragment *)item->data;
585 pitem_free(item);
617 pitem *item = NULL; local
629 /* Try to find item in queue */
633 item = pqueue_find(s->d1->buffered_messages, seq64be);
635 if (item == NULL)
646 frag = (hm_fragment*) item
725 pitem *item = NULL; local
1031 pitem *item; local
1055 pitem *item; local
1122 pitem *item; local
1208 pitem *item; local
[all...]
/external/chromium_org/third_party/skia/platform_tools/android/gyp_gen/
H A Dgenerate_user_config.py97 for item in sorted(defines):
100 dst.write('#define ' + item.replace('=', ' ') + '\n')
/external/chromium_org/tools/clang/rewrite_scoped_refptr/tests/
H A Dtest12-expected.cc42 const Foo* item = NULL; local
44 item = it->get();
H A Dtest12-original.cc42 const Foo* item = NULL; local
44 item = *it;
/external/chromium_org/ui/app_list/cocoa/
H A Ditem_drag_controller.h16 // dragging an app list item around the app list grid. When initiated, the item
19 // item location in the grid.
31 - (void)initiate:(AppsGridViewItem*)item
39 - (void)complete:(AppsGridViewItem*)item
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DStringComboPropertyEditor.java51 for (String item : m_items) {
52 combo.add(item);
/external/hamcrest/library/src/org/hamcrest/collection/
H A DIsArrayContaining.java18 for (T item : array) {
19 if (elementMatcher.matches(item)) {
/external/junit/src/org/junit/internal/matchers/
H A DCombinableMatcher.java17 public boolean matches(Object item) { argument
18 return fMatcher.matches(item);

Completed in 844 milliseconds

<<11121314151617181920>>