HomeSort by relevance Sort by last modified time
    Searched refs:item (Results 101 - 125 of 3620) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webrtc/src/system_wrappers/source/
list_no_stl.h 23 ListNoStlItem(const unsigned int item);
58 ListNoStlItem* Next(ListNoStlItem* item) const;
59 ListNoStlItem* Previous(ListNoStlItem* item) const;
60 int Erase(ListNoStlItem* item);
68 void PushBack(ListNoStlItem* item);
69 void PushFront(ListNoStlItem* item);
list_stl.cc 16 ListItem::ListItem(const void* item)
18 item_ptr_(item),
23 ListItem::ListItem(const unsigned int item)
26 item_(item)
73 ListItem* item = new ListItem(ptr); local
74 list_.push_back(item);
80 ListItem* item = new ListItem(item_id); local
81 list_.push_back(item);
87 ListItem* item = new ListItem(item_id); local
88 list_.push_front(item);
94 ListItem* item = new ListItem(ptr); local
    [all...]
  /external/chromium_org/android_webview/browser/
aw_download_manager_delegate.h 20 content::DownloadItem* item,
23 content::DownloadItem* item,
26 content::DownloadItem* item,
  /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-icon {
31 .destination-list-item-name {
35 .destination-list-item .offline-status {
  /external/chromium_org/extensions/common/matcher/
url_matcher_helpers.cc 22 std::string item; local
23 if (!value_as_list->GetString(i, &item))
25 out->push_back(item);
  /external/chromium_org/chrome/browser/download/
all_download_item_notifier.h 28 // content::DownloadManager* manager, content::DownloadItem* item) { ... }
39 // multiple managers at once and easily distinguish which manager a given item
47 content::DownloadManager* manager, content::DownloadItem* item) {}
49 content::DownloadManager* manager, content::DownloadItem* item) {}
51 content::DownloadManager* manager, content::DownloadItem* item) {}
53 content::DownloadManager* manager, content::DownloadItem* item) {}
71 content::DownloadItem* item) OVERRIDE;
74 virtual void OnDownloadUpdated(content::DownloadItem* item) OVERRIDE;
75 virtual void OnDownloadOpened(content::DownloadItem* item) OVERRIDE;
76 virtual void OnDownloadRemoved(content::DownloadItem* item) OVERRIDE
    [all...]
download_ui_controller_unittest.cc 34 virtual void NotifyDownloadStarting(content::DownloadItem* item) OVERRIDE;
43 void TestDelegate::NotifyDownloadStarting(content::DownloadItem* item) {
45 *receiver_ = item;
98 scoped_ptr<MockDownloadItem> item(
100 EXPECT_CALL(*item, AddObserver(_))
102 EXPECT_CALL(*item, RemoveObserver(_))
105 return item.Pass();
119 scoped_ptr<MockDownloadItem> item = GetMockDownload(); local
121 EXPECT_CALL(*item, GetTargetFilePath())
123 EXPECT_CALL(*item, GetState()
146 scoped_ptr<MockDownloadItem> item = GetMockDownload(); local
161 scoped_ptr<MockDownloadItem> item = GetMockDownload(); local
    [all...]
download_history.cc 11 // store per-DownloadItem data such as whether the item is persisted or being
21 // item is still being added to the database, DownloadHistory uses
22 // |removed_while_adding_| to remember to remove the item when its ItemAdded()
60 static DownloadHistoryData* Get(content::DownloadItem* item) {
61 base::SupportsUserData::Data* data = item->GetUserData(kKey);
66 explicit DownloadHistoryData(content::DownloadItem* item)
68 item->SetUserData(kKey, this);
79 // unnecessarily. It is nullified when the item is no longer in progress in
102 content::DownloadItem* item) {
105 DownloadedByExtension* by_ext = DownloadedByExtension::Get(item);
232 content::DownloadItem* item = notifier_.GetManager()->CreateDownloadItem( local
    [all...]
  /external/chromium_org/content/renderer/
menu_item_builder.h 17 static MenuItem Build(const WebKit::WebMenuItemInfo& item);
  /external/guava/guava-testlib/src/com/google/common/testing/
EquivalenceTester.java 71 @Override public void assertRelated(T item, T related) {
72 assertTrue("$ITEM must be equivalent to $RELATED", equivalence.equivalent(item, related));
73 int itemHash = equivalence.hash(item);
75 assertEquals("the hash (" + itemHash + ") of $ITEM must be equal to the hash ("
79 @Override public void assertUnrelated(T item, T unrelated) {
80 assertTrue("$ITEM must be inequivalent to $UNRELATED",
81 !equivalence.equivalent(item, unrelated));
116 for (T item : items) {
117 assertTrue(item + " must be inequivalent to null", !equivalence.equivalent(item, null))
    [all...]
  /external/nist-sip/java/gov/nist/core/
MultiMap.java 35 public Object remove( Object key, Object item );
  /external/smack/src/org/jivesoftware/smackx/muc/
Occupant.java 42 Occupant(MUCAdmin.Item item) {
44 this.jid = item.getJid();
45 this.affiliation = item.getAffiliation();
46 this.role = item.getRole();
47 this.nick = item.getNick();
54 MUCUser.Item item = mucUser.getItem(); local
55 this.jid = item.getJid();
56 this.affiliation = item.getAffiliation()
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/
DOMStringList.java 26 * Returns the <code>index</code>th item in the collection. If
34 public String item(int index); method in interface:DOMStringList
  /ndk/sources/android/support/src/musl-locale/
langinfo.c 29 char *nl_langinfo(nl_item item)
31 int cat = item >> 16;
32 int idx = item & 65535;
35 if (item == CODESET) return "UTF-8";
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_weakrefset.py 38 def _remove(item, selfref=ref(self)):
42 self._pending_removals.append(item)
44 self.data.discard(item)
61 item = itemref()
62 if item is not None:
63 yield item
68 def __contains__(self, item):
70 wr = ref(item)
81 def add(self, item):
84 self.data.add(ref(item, self._remove)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_weakrefset.py 38 def _remove(item, selfref=ref(self)):
42 self._pending_removals.append(item)
44 self.data.discard(item)
61 item = itemref()
62 if item is not None:
63 yield item
68 def __contains__(self, item):
70 wr = ref(item)
81 def add(self, item):
84 self.data.add(ref(item, self._remove)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
PhotoMenu.java 53 PieItem item = null; local
60 item = makeSwitchItem(CameraSettings.KEY_CAMERA_HDR_PLUS, true);
61 mRenderer.addItem(item);
66 item = makeSwitchItem(CameraSettings.KEY_CAMERA_HDR, true);
67 mRenderer.addItem(item);
71 item = makeItem(CameraSettings.KEY_EXPOSURE);
72 item.setLabel(res.getString(R.string.pref_exposure_label));
73 mRenderer.addItem(item);
82 item = makeItem(CameraSettings.KEY_FLASH_MODE);
83 item.setLabel(res.getString(R.string.pref_camera_flashmode_label))
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
assocdat.c 79 assoc_data_item *item = NULL; local
91 item = &assoc_data->vector[i];
95 if (!item) {
103 item = &assoc_data->vector[assoc_data->size-1];
104 item->callback = callback;
105 item->data = NULL;
109 if (item->data && item->data != data)
110 item->callback->destroy(item->data)
    [all...]
  /frameworks/base/core/java/android/speech/tts/
AudioPlaybackHandler.java 41 private void stop(PlaybackQueueItem item) {
42 if (item == null) {
46 item.stop(false);
49 public void enqueue(PlaybackQueueItem item) {
51 mQueue.put(item);
76 * @return false iff the queue is empty and no queue item is currently
106 final PlaybackQueueItem item = it.next(); local
107 if (item.getCallerIdentity() == callerIdentity) {
121 PlaybackQueueItem item = null; local
123 item = mQueue.take()
    [all...]
  /external/chromium/webkit/glue/
glue_serialize.cc 297 const WebHistoryItem& item, SerializeObject* obj) {
304 WriteString(item.urlString(), obj);
305 WriteString(item.originalURLString(), obj);
306 WriteString(item.target(), obj);
307 WriteString(item.parent(), obj);
308 WriteString(item.title(), obj);
309 WriteString(item.alternateTitle(), obj);
310 WriteReal(item.lastVisitedTime(), obj);
311 WriteInteger(item.scrollOffset().x, obj);
312 WriteInteger(item.scrollOffset().y, obj)
354 WebHistoryItem item; local
482 const WebHistoryItem& item = local
496 const WebHistoryItem& item = local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_keymap.c 151 struct keymap_item *item; local
155 item = (struct keymap_item *) cso_hash_iter_data(iter);
156 if (!memcmp(item->key, key, map->key_size))
192 struct keymap_item *item; local
201 item = hash_table_find_item(map, key, key_hash);
202 if (item) {
203 /* call delete callback for old entry/item */
204 map->delete_func(map, item->key, item->value, user);
205 item->value = (void *) data
235 struct keymap_item *item; local
261 struct keymap_item *item; local
295 struct keymap_item *item; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_keymap.c 151 struct keymap_item *item; local
155 item = (struct keymap_item *) cso_hash_iter_data(iter);
156 if (!memcmp(item->key, key, map->key_size))
192 struct keymap_item *item; local
201 item = hash_table_find_item(map, key, key_hash);
202 if (item) {
203 /* call delete callback for old entry/item */
204 map->delete_func(map, item->key, item->value, user);
205 item->value = (void *) data
235 struct keymap_item *item; local
261 struct keymap_item *item; local
295 struct keymap_item *item; local
    [all...]
  /external/chromium_org/tools/grit/grit/format/
rc_header.py 6 '''Item formatters for RC headers.
54 for item in items:
55 if not isinstance(item, message.MessageNode):
56 with item:
57 for tid in item.GetTextualIds():
64 for item in root.ActiveDescendants():
65 if isinstance(item, message.MessageNode):
66 with item:
67 for tid in item.GetTextualIds():
99 for item in root
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BrowserBookmarksAdapter.java 78 void bindGridView(View view, Context context, BrowserBookmarksAdapterItem item) {
88 tv.setText(item.title);
89 if (item.is_folder) {
96 if (item.thumbnail == null || !item.has_thumbnail) {
99 thumb.setImageDrawable(item.thumbnail);
107 BrowserBookmarksAdapterItem item) {
108 if (item == null) {
109 item = new BrowserBookmarksAdapterItem();
111 Bitmap thumbnail = item.thumbnail != null ? item.thumbnail.getBitmap() : null
127 BrowserBookmarksAdapterItem item = new BrowserBookmarksAdapterItem(); local
    [all...]
  /external/harfbuzz/src/
harfbuzz-myanmar.c 254 static HB_Bool myanmar_shape_syllable(HB_Bool openType, HB_ShaperItem *item, HB_Bool invalid)
257 // MMDEBUG("\nsyllable from %d len %d, str='%s'", item->item.pos, item->item.length,
258 // item->string->mid(item->from, item->length).toUtf8().data());
262 const int availableGlyphs = item->num_glyphs;
264 const HB_UChar16 *uc = item->string + item->item.pos
    [all...]

Completed in 2239 milliseconds

1 2 3 45 6 7 8 91011>>