HomeSort by relevance Sort by last modified time
    Searched refs:item (Results 151 - 175 of 4164) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechRecognitionResult.idl 31 getter SpeechRecognitionAlternative item(unsigned long index);
SpeechRecognitionResultList.idl 31 getter SpeechRecognitionResult item(unsigned long index);
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLResultSetRowList.idl 34 [Custom] object item(unsigned long index);
  /external/chromium_org/third_party/WebKit/Source/platform/
ContextMenu.h 42 void appendItem(const ContextMenuItem& item) { m_items.append(item); }
  /external/chromium_org/tools/json_schema_compiler/
json_schema.py 9 def DeleteNodes(item, delete_key):
10 """Deletes the given nodes in item, recursively, that have |delete_key| as
16 if json_parse.IsDict(item):
18 for key, value in item.items():
24 del item[key]
25 elif type(item) == list:
26 item[:] = [DeleteNodes(thing, delete_key)
27 for thing in item if not HasKey(thing)]
29 return item
  /external/chromium_org/ui/app_list/views/
folder_header_view_delegate.h 21 // |item| is the folder item which FolderHeaderview represents.
24 virtual void NavigateBack(AppListFolderItem* item,
30 // Tells the model to set the name of |item|.
31 virtual void SetItemName(AppListFolderItem* item,
  /external/icu/icu4c/source/test/depstest/
dependencies.py 17 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["files"] = set(
    [all...]
  /frameworks/base/libs/hwui/utils/
SortedListImpl.h 33 ssize_t indexOf(const void* item) const;
34 size_t orderOf(const void* item) const;
35 ssize_t add(const void* item);
38 ssize_t remove(const void* item);
44 ssize_t _indexOrderOf(const void* item, size_t* order = 0) const;
51 void push(const void* item);
57 ssize_t insertAt(const void* item, size_t where, size_t numItems = 1);
59 ssize_t replaceAt(const void* item, size_t index);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ArrayObjectAdapter.java 58 * Returns the index for the first occurrence of item in the adapter, or -1 if
61 * @param item The item to find in the list.
62 * @return Index of the first occurrence of the item in the adapter, or -1
65 public int indexOf(Object item) {
66 return mItems.indexOf(item);
73 * @param positionStart The position of first item that has changed.
81 * Adds an item to the end of the adapter.
83 * @param item The item to add to the end of the adapter
86 add(mItems.size(), item); local
    [all...]
  /external/chromium_org/chrome/browser/download/
all_download_item_notifier_unittest.cc 25 content::DownloadManager* manager, content::DownloadItem* item));
27 content::DownloadManager* manager, content::DownloadItem* item));
29 content::DownloadManager* manager, content::DownloadItem* item));
31 content::DownloadManager* manager, content::DownloadItem* item));
49 content::MockDownloadItem& item() { return item_; } function in class:__anon8088::AllDownloadItemNotifierTest
85 items.push_back(&item());
90 EXPECT_CALL(observer(), OnDownloadUpdated(&manager(), &item()));
91 NotifierAsItemObserver()->OnDownloadUpdated(&item());
93 EXPECT_CALL(observer(), OnDownloadOpened(&manager(), &item()));
94 NotifierAsItemObserver()->OnDownloadOpened(&item());
    [all...]
  /device/lge/mako/camera/QCamera/stack/common/
cam_list.h 52 static inline void cam_list_add_tail_node(struct cam_list *item,
57 head->prev = item;
58 item->next = head;
59 item->prev = prev;
60 prev->next = item;
  /device/moto/shamu/camera/QCamera/stack/common/
cam_list.h 52 static inline void cam_list_add_tail_node(struct cam_list *item,
57 head->prev = item;
58 item->next = head;
59 item->prev = prev;
60 prev->next = item;
  /external/chromium_org/ui/app_list/test/
app_list_test_model.cc 63 AppListItem* AppListTestModel::AddItem(AppListItem* item) {
64 return AppListModel::AddItem(make_scoped_ptr(item));
67 AppListItem* AppListTestModel::AddItemToFolder(AppListItem* item,
69 return AppListModel::AddItemToFolder(make_scoped_ptr(item), folder_id);
72 void AppListTestModel::MoveItemToFolder(AppListItem* item,
74 AppListModel::MoveItemToFolder(item, folder_id);
79 return base::StringPrintf("Item %d", id);
91 AppListTestItem* item = CreateAndAddItem(GetItemName(start_index)); local
92 std::string merged_item_id = item->id();
112 AppListTestItem* item = CreateItem(item_id) local
135 AppListTestItem* item = new AppListTestItem(id, this); local
152 AppListItem* item = AppListModel::AddItem(test_item.PassAs<AppListItem>()); local
156 AppListItem* item = top_level_item_list()->item_at(index); local
    [all...]
  /external/hamcrest/library/src/org/hamcrest/
TypeSafeMatcher.java 16 * Subclasses should implement this. The item will already have been checked for
19 public abstract boolean matchesSafely(T item);
53 public final boolean matches(Object item) {
54 return item != null
55 && expectedType.isInstance(item)
56 && matchesSafely((T) item);
  /external/junit/src/org/junit/internal/matchers/
TypeSafeMatcher.java 18 * Subclasses should implement this. The item will already have been checked for
21 public abstract boolean matchesSafely(T item);
55 public final boolean matches(Object item) {
56 return item != null
57 && expectedType.isInstance(item)
58 && matchesSafely((T) item);
  /packages/apps/Browser/src/com/android/browser/view/
PieMenu.java 170 public void addItem(PieItem item) {
171 // add the item to the pie itself
172 mItems.add(item);
173 int l = item.getLevel();
178 public void removeItem(PieItem item) {
179 mItems.remove(item);
204 for (PieItem item : mCurrentItems) {
205 item.setSelected(false);
221 for (PieItem item : mCurrentItems) {
222 item.setAnimationAngle((1 - animation.getAnimatedFraction()) * (- item.getStart()))
384 PieItem item = mCurrentItem; local
435 PieItem item = findItem(polar); local
    [all...]
  /external/webrtc/src/system_wrappers/source/
list_unittest.cc 41 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) {
88 const bool retval = DestroyListItemContent(item);
89 delete item;
409 ListItem* item = descending_list->Last(); local
455 ListItem* item = ascending_list->Last(); local
    [all...]
  /cts/tools/dex-tools/src/dex/reader/
DexFileReader.java 189 ProtIdItem item = null; local
191 item = new ProtIdItem();
192 item.shorty_idx = b.readUInt();
193 item.return_type_idx = b.readUInt();
194 item.parameter_off = b.readUInt();
195 protoIdItems[i] = item;
211 FieldIdItem item = null; local
213 item = new FieldIdItem();
214 item.class_idx = b.readUShort();
215 item.type_idx = b.readUShort()
233 MethodsIdItem item = null; local
259 ClassDefItem item = null; local
    [all...]
  /external/chromium_org/chrome/browser/resources/print_preview/search/
destination_list_item.css 5 .destination-list-item {
14 .destination-list-item:hover {
18 .destination-list-item.stale {
22 .destination-list-item-content {
26 .destination-list-item-icon {
36 .destination-list-item-name {
45 .destination-list-item-name .search-hint {
51 .destination-list-item .offline-status {
64 .destination-list-item-query-highlight {
  /external/chromium_org/third_party/WebKit/Source/core/clipboard/
DataObjectItem.cpp 44 RefPtrWillBeRawPtr<DataObjectItem> item = adoptRefWillBeNoop(new DataObjectItem(StringKind, type)); local
45 item->m_data = data;
46 return item.release();
51 RefPtrWillBeRawPtr<DataObjectItem> item = adoptRefWillBeNoop(new DataObjectItem(FileKind, file->type())); local
52 item->m_file = file;
53 return item.release();
58 RefPtrWillBeRawPtr<DataObjectItem> item = adoptRefWillBeNoop(new DataObjectItem(StringKind, mimeTypeTextURIList)); local
59 item->m_data = url;
60 item->m_title = title;
61 return item.release()
66 RefPtrWillBeRawPtr<DataObjectItem> item = adoptRefWillBeNoop(new DataObjectItem(StringKind, mimeTypeTextHTML)); local
74 RefPtrWillBeRawPtr<DataObjectItem> item = adoptRefWillBeNoop(new DataObjectItem(FileKind, String())); local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
discoitemsquerytask.cc 55 DiscoItem item; local
57 if (ParseItem(child_element, &item)) {
58 items.push_back(item);
68 DiscoItem* item) {
73 item->jid = element->Attr(QN_JID);
74 item->name = element->Attr(QN_NAME);
75 item->node = element->Attr(QN_NODE);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_resolve_map.c 70 struct intel_resolve_map *item = head->next; local
72 while (item) {
73 if (item->level == level && item->layer == layer)
76 item = item->next;
79 return item;
  /external/chromium_org/tools/grit/grit/format/policy_templates/
template_formatter.py 63 for item in root.ActiveDescendants():
64 with item:
65 if (isinstance(item, structure.StructureNode) and
66 item.attrs['type'] == 'policy_template_metafile'):
68 json_text = item.gatherer.Translate(
70 pseudo_if_not_available=item.PseudoIsAllowed(),
71 fallback_to_english=item.ShouldFallbackToEnglish())
  /external/junit/src/org/junit/experimental/results/
ResultMatchers.java 34 public boolean matchesSafely(PrintableResult item) {
35 return item.failureCount() == count;
45 public boolean matches(Object item) {
46 return item.toString().contains(string) && failureCountIs(1).matches(item);
61 public boolean matches(Object item) {
62 return item.toString().contains(string);
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_resolve_map.c 70 struct intel_resolve_map *item = head->next; local
72 while (item) {
73 if (item->level == level && item->layer == layer)
76 item = item->next;
79 return item;

Completed in 645 milliseconds

1 2 3 4 5 67 8 91011>>