Searched refs:item (Results 276 - 300 of 1876) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Dcombobutton.js34 addDropDownItem: function(item) {
36 var menuitem = this.menu.addMenuItem(item);
37 menuitem.data = item;
38 if (item.iconType) {
40 menuitem.setAttribute('file-type-icon', item.iconType);
42 if (item.bold) {
56 * Default item to fire on combobox click
141 dispatchSelectEvent: function(item) {
143 selectEvent.item = item;
[all...]
/external/chromium_org/ui/message_center/
H A Dfake_notifier_settings_provider.cc28 NotifierGroupItem item; local
29 item.group = new NotifierGroup(gfx::Image(),
33 item.notifiers = notifiers;
34 items_.push_back(item);
109 NotifierGroupItem item; local
110 item.group = group;
111 item.notifiers = notifiers;
112 items_.push_back(item);
/external/hamcrest/library/src/org/hamcrest/number/
H A DIsCloseTo.java24 public boolean matchesSafely(Double item) { argument
25 return Math.abs((item - value)) <= error;
/external/hamcrest/library/src/org/hamcrest/text/
H A DIsEqualIgnoringCase.java27 public boolean matchesSafely(String item) { argument
28 return string.equalsIgnoreCase(item);
/external/hamcrest/src/org/hamcrest/core/
H A DIsInstanceOf.java27 public boolean matches(Object item) { argument
28 return theClass.isInstance(item);
/external/libcxx/test/containers/sequences/dynarray/dynarray.mutate/
H A Ddefault.pass.cpp36 [&val]( const T &item ){ return item == val; } ));
/external/libvorbis/
H A DMakefile.am33 for item in $(EXTRA_DIST); do \
34 if test -d $$item; then \
35 echo -n "cleaning $$item dir for distribution..."; \
36 rm -rf `find $(distdir)/$$item -name .svn`; \
/external/lldb/test/
H A Dbench.py60 for item in benches:
61 command = item.replace('%E',
/external/skia/tools/tests/
H A Dbench_pictures_cfg_test.py40 for item in value:
41 ThrowIfNotAString(item)
/external/chromium_org/chrome/browser/extensions/api/context_menus/
H A Dcontext_menus_api_helpers.h126 // Creates and adds a menu item from |create_properties|.
156 // Launcher item is not allowed for <webview>.
193 scoped_ptr<MenuItem> item(
197 if (!item->PopulateURLPatterns(
212 success = menu_manager->AddChildItem(parent->id(), item.release());
214 success = menu_manager->AddContextItem(extension, item.release());
224 // Updates a menu item from |update_properties|.
235 MenuItem* item = menu_manager->GetItemById(item_id); local
236 if (!item || item
[all...]
/external/chromium_org/chrome/browser/ui/app_list/
H A Dextension_app_model_builder.cc160 ExtensionAppItem* item = GetExtensionAppItem(extension_id); local
161 if (!item)
163 item->SetPercentDownloaded(percent_downloaded);
198 ExtensionAppItem* item = GetExtensionAppItem(extension->id()); local
199 if (!item)
201 item->UpdateIcon();
319 app_list::AppListItem* item = model_->FindItem(extension_id); local
320 LOG_IF(ERROR, item &&
321 item->GetItemType() != ExtensionAppItem::kItemType)
323 << " has incorrect type: '" << item
338 OnListItemMoved(size_t from_index, size_t to_index, app_list::AppListItem* item) argument
351 app_list::AppListItem* item = item_list->item_at(idx - 1); local
359 app_list::AppListItem* item = item_list->item_at(idx + 1); local
[all...]
/external/chromium_org/base/message_loop/
H A Dmessage_pump_win.cc521 IOItem item; local
522 if (completed_io_.empty() || !MatchCompletedIOItem(filter, &item)) {
524 if (!GetIOItem(timeout, &item))
527 if (ProcessInternalIOItem(item))
531 // If |item.has_valid_io_context| is false then |item.context| does not point
534 if (!item.has_valid_io_context || item.context->handler) {
535 if (filter && item.handler != filter) {
536 // Save this item fo
554 GetIOItem(DWORD timeout, IOItem* item) argument
571 ProcessInternalIOItem(const IOItem& item) argument
583 MatchCompletedIOItem(IOHandler* filter, IOItem* item) argument
[all...]
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dsamples_model.py129 for item in sorted(api_items):
130 if len(item.split('.')) < 3:
132 if item.endswith('.removeListener') or item.endswith('.hasListener'):
134 if item.endswith('.addListener'):
135 item = item[:-len('.addListener')]
136 if item.startswith('chrome.'):
137 item = item[le
[all...]
/external/chromium_org/chrome/renderer/pepper/
H A Dpepper_flash_menu_host.cc53 content::MenuItem item; local
58 item.type = content::MenuItem::OPTION;
61 item.type = content::MenuItem::CHECKABLE_OPTION;
64 item.type = content::MenuItem::SEPARATOR;
67 item.type = content::MenuItem::SUBMENU;
73 item.label = base::UTF8ToUTF16(in_menu->items[i].name);
76 item.action = static_cast<unsigned>(menu_id_map->size());
77 // This sets |(*menu_id_map)[item.action] = in_menu->items[i].id|.
79 item.enabled = PP_ToBool(in_menu->items[i].enabled);
80 item
[all...]
/external/chromium_org/third_party/cython/src/Cython/Tempita/
H A D_looper.py5 previously up, if this is the first or last item in the sequence, etc.
9 >>> for loop, item in looper(['a', 'b', 'c']):
10 ... print loop.number, item
33 for loop, item in looper(seq):
87 def item(self): member in class:loop_pos
89 item = property(item) variable in class:loop_pos
129 Returns true if this item is the start of a new group,
131 can be None (the item itself changes), an attribute name like
136 return self._compare_group(self.item, sel
[all...]
/external/chromium_org/ui/android/java/src/org/chromium/ui/
H A DDropdownAdapter.java24 * Dropdown item adapter for DropdownPopupWindow.
47 DropdownItem item = getItem(i);
48 if (item.isEnabled() && !item.isGroupHeader()) {
65 DropdownItem item = getItem(position);
68 labelView.setText(item.getLabel());
70 labelView.setEnabled(item.isEnabled());
71 if (item.isGroupHeader()) {
97 CharSequence sublabel = item.getSublabel();
116 DropdownItem item
[all...]
/external/qemu/android/utils/
H A Dreflist.h77 /* Return TRUE iff an ARefList has no item */
84 /* Return the index of 'item' in the ARefList, or -1.
85 * This returns -1 if 'item' is NULL.
87 int areflist_indexOf(const ARefList* l, void* item);
89 /* Return TRUE iff an ARefList contains 'item' */
91 areflist_has(const ARefList* l, void* item) argument
93 return areflist_indexOf(l, item) >= 0;
96 /* Append 'item' to a list. An item can be added several
97 * times to the same list. Do nothing if 'item' i
110 areflist_push(ARefList* l, void* item) argument
[all...]
/external/chromium_org/third_party/polymer/components-chromium/core-list/
H A Dcore-list-extracted.js8 * Fired when an item element is tapped.
12 * @param {Object} detail.item the item element
37 * The height of a list item. `core-list` currently supports only fixed-height
151 for (var i = 0, item = this.template.nextElementSibling;
152 item && i < this._physicalCount;
153 ++i, item = item.nextElementSibling) {
154 this._physicalItems[i] = item;
155 item
[all...]
/external/libvorbis/doc/
H A D04-codec.tex76 \item All three fields set to the same value implies a fixed rate, or tightly bounded, nearly fixed-rate bitstream
77 \item Only nominal set implies a VBR or ABR stream that averages the nominal bitrate
78 \item Maximum and or minimum set implies a VBR bitstream that obeys the bitrate limits
79 \item None set indicates the encoder does not care to speculate.
111 \item \varname{[vorbis_codebook_count]} = read eight bits as unsigned integer and add one
112 \item Decode \varname{[vorbis_codebook_count]} codebooks in order as defined
127 \item \varname{[vorbis_time_count]} = read 6 bits as unsigned integer and add one
128 \item read \varname{[vorbis_time_count]} 16 bit values; each value should be zero. If any value is nonzero, this is an error condition and the stream is undecodable.
139 \item \varname{[vorbis_floor_count]} = read 6 bits as unsigned integer and add one
140 \item Fo
[all...]
/external/chromium_org/storage/browser/blob/
H A Dblob_url_request_job.cc198 const BlobData::Item& item = blob_data_->items().at(i); local
199 if (IsFileType(item.type())) {
207 if (!AddItemLength(i, item.length()))
255 const BlobData::Item& item = blob_data_->items().at(index); local
256 DCHECK(IsFileType(item.type()));
259 uint64 item_offset = item.offset();
260 uint64 item_length = item.length();
269 // If item length is undefined, then we need to use the file size being
294 // Set the offset that need to jump to for the first item in the range.
301 const BlobData::Item& item local
330 const BlobData::Item& item = blob_data_->items().at(current_item_index_); local
367 ReadBytesItem(const BlobData::Item& item, int bytes_to_read) argument
553 const BlobData::Item& item = blob_data_->items().at(index); local
565 const BlobData::Item& item = blob_data_->items().at(index); local
[all...]
/external/chromium_org/ui/webui/resources/js/cr/ui/
H A Dlist.js53 * is needed. Note that lead item is allowed to have a different height, to
54 * accommodate lists where a single item at a time can be expanded to show
157 * Cached item for measuring the default item size by measureItem().
231 return dataModel.item(index);
252 return dataModel.item(i);
268 * Returns true if the child is a list item. Subclasses may override this
271 * @return {boolean} True if a list item.
339 // The next id suffix to use when giving each item an unique id.
344 * @param {ListItem=} item Th
[all...]
/external/chromium_org/chrome/browser/ui/libgtk2ui/
H A Dchrome_gtk_menu_subclasses.cc21 static void gtk_custom_menu_item_init(GtkCustomMenuItem* item) { argument
/external/chromium_org/chrome/installer/util/
H A Ddelete_reg_key_work_item_unittest.cc40 scoped_ptr<DeleteRegKeyWorkItem> item(WorkItem::CreateDeleteRegKeyWorkItem(
42 EXPECT_TRUE(item->Do());
45 item->Rollback();
46 item.reset();
56 scoped_ptr<DeleteRegKeyWorkItem> item(WorkItem::CreateDeleteRegKeyWorkItem(
58 EXPECT_TRUE(item->Do());
61 item->Rollback();
62 item.reset();
72 scoped_ptr<DeleteRegKeyWorkItem> item(WorkItem::CreateDeleteRegKeyWorkItem(
74 EXPECT_TRUE(item
[all...]
/external/chromium_org/components/component_updater/
H A Dcomponent_updater_ping_manager.h22 void OnUpdateComplete(const CrxUpdateItem* item);
/external/chromium_org/content/renderer/
H A Dhistory_serialization.h23 const blink::WebHistoryItem& item);

Completed in 3996 milliseconds

<<11121314151617181920>>