Searched refs:item (Results 126 - 150 of 1816) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGElementInstanceList.idl29 SVGElementInstance item([Default=Undefined] optional unsigned long index);
H A DSVGLengthList.idl31 [StrictTypeChecking, RaisesException] SVGLength initialize(SVGLength item);
33 [StrictTypeChecking, RaisesException] SVGLength insertItemBefore(SVGLength item, unsigned long index);
34 [StrictTypeChecking, RaisesException] SVGLength replaceItem(SVGLength item, unsigned long index);
36 [StrictTypeChecking, RaisesException] SVGLength appendItem(SVGLength item);
H A DSVGNumberList.idl31 [StrictTypeChecking, RaisesException] SVGNumber initialize(SVGNumber item);
33 [StrictTypeChecking, RaisesException] SVGNumber insertItemBefore(SVGNumber item, unsigned long index);
34 [StrictTypeChecking, RaisesException] SVGNumber replaceItem(SVGNumber item, unsigned long index);
36 [StrictTypeChecking, RaisesException] SVGNumber appendItem(SVGNumber item);
H A DSVGPointList.idl30 [StrictTypeChecking, RaisesException] SVGPoint initialize(SVGPoint item);
32 [StrictTypeChecking, RaisesException] SVGPoint insertItemBefore(SVGPoint item, unsigned long index);
33 [StrictTypeChecking, RaisesException] SVGPoint replaceItem(SVGPoint item, unsigned long index);
35 [StrictTypeChecking, RaisesException] SVGPoint appendItem(SVGPoint item);
H A DSVGStringList.idl30 [StrictTypeChecking, RaisesException] DOMString initialize(DOMString item);
32 [StrictTypeChecking, RaisesException] DOMString insertItemBefore(DOMString item, unsigned long index);
33 [StrictTypeChecking, RaisesException] DOMString replaceItem(DOMString item, unsigned long index);
35 [StrictTypeChecking, RaisesException] DOMString appendItem(DOMString item);
H A DSVGTransformList.idl31 [StrictTypeChecking, RaisesException] SVGTransform initialize(SVGTransform item);
33 [StrictTypeChecking, RaisesException] SVGTransform insertItemBefore(SVGTransform item, unsigned long index);
34 [StrictTypeChecking, RaisesException] SVGTransform replaceItem(SVGTransform item, unsigned long index);
36 [StrictTypeChecking, RaisesException] SVGTransform appendItem(SVGTransform item);
/external/chromium_org/third_party/WebKit/Source/modules/gamepad/
H A DGamepadList.idl30 getter Gamepad item([Default=Undefined] optional unsigned long index);
/external/chromium_org/third_party/WebKit/Source/modules/mediasource/
H A DSourceBufferList.idl36 getter SourceBuffer item(unsigned long index);
H A DWebKitSourceBufferList.idl36 getter WebKitSourceBuffer item(unsigned long index);
/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechRecognitionResult.idl30 getter SpeechRecognitionAlternative item(unsigned long index);
H A DSpeechRecognitionResultList.idl30 getter SpeechRecognitionResult item(unsigned long index);
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DSQLResultSetRowList.idl33 [Custom] any item(unsigned long index);
/external/chromium_org/third_party/WebKit/Source/platform/
H A DContextMenu.h42 void appendItem(const ContextMenuItem& item) { m_items.append(item); } argument
/external/dropbear/
H A Dqueue.h30 void* item; member in struct:Link
47 void enqueue(struct Queue* queue, void* item);
/external/icu4c/test/depstest/
H A Ddependencies.py17 items: Map from library or group names to item maps.
18 Each item has a "type" ("library" or "group" or "system_symbols").
19 A library or group item can have an optional set of "files" (as in the files attribute).
20 Each item can have an optional set of "deps" (libraries & groups).
21 A group item also has a "library" name unless it is a group of system symbols.
22 The one "system_symbols" item and its groups have sets of "system_symbols"
30 # item contents: {"type": "binary"} with optional files & deps
73 def _ReadFiles(deps_file, item, library_name):
75 item_files = item.get("files")
80 if item_files == None: item_files = item["file
[all...]
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/
H A Ddefault_action_dialog.js46 this.list_.itemConstructor = function(item) {
47 return self.renderItem(item);
63 * Renders item for list.
64 * @param {Object} item Item to render.
66 DefaultActionDialog.prototype.renderItem = function(item) {
70 div.textContent = item.label;
72 if (item.iconType) {
73 div.setAttribute('file-type-icon', item.iconType);
74 } else if (item.iconUrl) {
75 div.style.backgroundImage = 'url(' + item
[all...]
/external/junit/src/org/junit/internal/matchers/
H A DTypeSafeMatcher.java18 * Subclasses should implement this. The item will already have been checked for
21 public abstract boolean matchesSafely(T item); argument
55 public final boolean matches(Object item) { argument
56 return item != null
57 && expectedType.isInstance(item)
58 && matchesSafely((T) item);
/external/chromium_org/ui/webui/resources/js/cr/ui/
H A Dtree.js26 * Helper function that finds the first ancestor tree item.
28 * @return {cr.ui.TreeItem} The found tree item or null if not found.
63 * Returns the tree item that are children of this tree.
70 * Adds a tree item to the tree.
71 * @param {!cr.ui.TreeItem} treeItem The item to add.
78 * Adds a tree item at the given index.
79 * @param {!cr.ui.TreeItem} treeItem The item to add.
80 * @param {number} index The index where we want to add the item.
88 * Removes a tree item child.
89 * @param {!cr.ui.TreeItem} treeItem The tree item t
[all...]
/external/webrtc/src/system_wrappers/source/
H A Dlist_unittest.cc41 const ListItem* item) const = 0;
59 ListItem* Next(ListItem* item) const {
60 return list_.Next(item);
62 ListItem* Previous(ListItem* item) const {
63 return list_.Previous(item);
65 virtual int Erase(ListItem* item) = 0;
86 virtual bool DestroyListItemContent(ListItem* item) = 0;
87 bool DestroyListItem(ListItem* item) { argument
88 const bool retval = DestroyListItemContent(item);
89 delete item;
120 DestroyListItemContent(ListItem* item) argument
135 Erase(ListItem* item) argument
169 DestroyListItemContent(ListItem* item) argument
214 Erase(ListItem* item) argument
409 ListItem* item = descending_list->Last(); local
455 ListItem* item = ascending_list->Last(); local
[all...]
/external/chromium/chrome/browser/resources/shared/js/cr/ui/
H A Dtree.js25 * Helper function that finds the first ancestor tree item.
27 * @return {cr.ui.TreeItem} The found tree item or null if not found.
62 * Returns the tree item that are children of this tree.
69 * Adds a tree item to the tree.
70 * @param {!cr.ui.TreeItem} treeItem The item to add.
77 * Adds a tree item at the given index.
78 * @param {!cr.ui.TreeItem} treeItem The item to add.
79 * @param {number} index The index where we want to add the item.
87 * Removes a tree item child.
88 * @param {!cr.ui.TreeItem} treeItem The tree item t
[all...]
/external/chromium/chrome/browser/resources/
H A Dmenu.js20 * @param {number} index The index of menu item to activate in menu model.
39 * Decorates the menu item element.
42 this.className = 'menu-item';
47 * @param {Menu} menu A {@code Menu} object to which this menu item
81 * Changes the selection state of the menu item.
95 * Activate the menu item.
122 this.className = 'menu-item ' + attrs.type;
196 * Currently selected menu item.
260 // Map from mnemonic character to item to activate
294 * @param {MenuItem} item Th
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dmenu.js20 * @param {number} index The index of menu item to activate in menu model.
39 * Decorates the menu item element.
42 this.className = 'menu-item';
47 * @param {Menu} menu A {@code Menu} object to which this menu item
81 * Changes the selection state of the menu item.
95 * Activate the menu item.
122 this.className = 'menu-item ' + attrs.type;
196 * Currently selected menu item.
254 // Map from mnemonic character to item to activate
288 * @param {MenuItem} item Th
[all...]
/external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
H A DChromiumDataObjectItem.cpp45 RefPtr<ChromiumDataObjectItem> item = adoptRef(new ChromiumDataObjectItem(StringKind, type)); local
46 item->m_data = data;
47 return item.release();
52 RefPtr<ChromiumDataObjectItem> item = adoptRef(new ChromiumDataObjectItem(FileKind, file->type())); local
53 item->m_file = file;
54 return item.release();
59 RefPtr<ChromiumDataObjectItem> item = adoptRef(new ChromiumDataObjectItem(StringKind, mimeTypeTextURIList)); local
60 item->m_data = url;
61 item->m_title = title;
62 return item
67 RefPtr<ChromiumDataObjectItem> item = adoptRef(new ChromiumDataObjectItem(StringKind, mimeTypeTextHTML)); local
75 RefPtr<ChromiumDataObjectItem> item = adoptRef(new ChromiumDataObjectItem(FileKind, String())); local
[all...]
/external/chromium_org/ash/shelf/
H A Dshelf_navigator.cc13 // Returns true if accelerator processing should skip the launcher item with
32 const ash::LauncherItem& item = items[i]; local
33 if (ShouldSkip(item.type))
36 if (item.status == ash::STATUS_RUNNING && first_running < 0)
39 if (item.status == ash::STATUS_ACTIVE) {
45 // If nothing is active, try to active the first running item.
55 // Find the next item and activate it.
58 const ash::LauncherItem& item = items[i]; local
59 if (ShouldSkip(item.type))
62 // Skip already active item
[all...]
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dapp_runtime_custom_bindings.js25 var itemLoaded = function(err, item) {
29 $Array.push(items, item);
40 $Array.forEach(launchData.items, function(item) {
41 var fs = GetIsolatedFileSystem(item.fileSystemId);
42 fs.root.getFile(item.baseName, {}, function(fileEntry) {
43 entryIdManager.registerEntry(item.entryId, fileEntry);
44 itemLoaded(null, { entry: fileEntry, type: item.mimeType });

Completed in 767 milliseconds

1234567891011>>