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

1 23 4 5 6 7 8 91011>>

  /external/smack/src/org/jivesoftware/smackx/
OfflineMessageHeader.java 50 public OfflineMessageHeader(DiscoverItems.Item item) {
52 user = item.getEntityID();
53 jid = item.getName();
54 stamp = item.getNode();
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
PresenterSelector.java 21 * Returns a presenter for the given item.
23 public abstract Presenter getPresenter(Object item);
  /packages/apps/Gallery2/src/com/android/photos/shims/
LoaderCompatShim.java 26 Drawable drawableForItem(T item, Drawable recycle);
27 Uri uriForItem(T item);
28 ArrayList<Uri> urisForSubItems(T item);
30 Object getPathForItem(T item);
  /packages/apps/Mms/src/org/w3c/dom/smil/
TimeList.java 24 * Returns the <code>index</code> th item in the collection. If
32 public Time item(int index); method in interface:TimeList
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_double_list.h 51 static INLINE void list_inithead(struct list_head *item)
53 item->prev = item;
54 item->next = item;
57 static INLINE void list_add(struct list_head *item, struct list_head *list)
59 item->prev = list;
60 item->next = list->next;
61 list->next->prev = item;
62 list->next = item;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_double_list.h 51 static INLINE void list_inithead(struct list_head *item)
53 item->prev = item;
54 item->next = item;
57 static INLINE void list_add(struct list_head *item, struct list_head *list)
59 item->prev = list;
60 item->next = list->next;
61 list->next->prev = item;
62 list->next = item;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TouchList.cpp 32 Touch* TouchList::item(unsigned index) function in class:WebCore::TouchList
39 const Touch* TouchList::item(unsigned index) const function in class:WebCore::TouchList
41 return const_cast<TouchList*>(this)->item(index);
  /external/chromium_org/tools/grit/grit/format/
js_map_format.py 21 for item in root.ActiveDescendants():
22 with item:
23 if isinstance(item, message.MessageNode):
24 yield _FormatMessage(item, lang)
25 elif isinstance(item, empty.MessagesNode):
29 def _FormatMessage(item, lang):
32 en_message = item.ws_at_start + item.Translate('en') + item.ws_at_end
39 loc_message = item.ws_at_start + item.Translate(lang) + item.ws_at_en
    [all...]
rc.py 23 for item in root.ActiveDescendants():
24 if isinstance(item, empty.MessagesNode):
28 for subitem in item.ActiveDescendants():
33 elif isinstance(item, include.IncludeNode):
34 with item:
35 yield FormatInclude(item, lang, output_dir)
36 elif isinstance(item, structure.StructureNode):
37 with item:
38 yield FormatStructure(item, lang, output_dir)
365 def FormatMessage(item, lang)
    [all...]
  /external/chromium_org/ui/app_list/
app_list_item_list_observer.h 17 // Triggered after |item| has been added to the list at |index|.
18 virtual void OnListItemAdded(size_t index, AppListItem* item) {}
20 // Triggered after an item has been removed from the list at |index|, just
21 // before the item is deleted.
22 virtual void OnListItemRemoved(size_t index, AppListItem* item) {}
24 // Triggered after |item| has been moved from |from_index| to |to_index|.
28 AppListItem* item) {}
  /external/smack/src/org/jivesoftware/smackx/muc/
HostedRoom.java 41 public HostedRoom(DiscoverItems.Item item) {
43 jid = item.getEntityID();
44 name = item.getName();
  /external/chromium_org/third_party/WebKit/Source/web/
WebDragData.cpp 86 WebVector<WebDragData::Item> WebDragData::items() const
88 Vector<Item> itemList;
90 DataObjectItem* originalItem = m_private->item(i).get();
91 WebDragData::Item item; local
93 item.storageType = Item::StorageTypeString;
94 item.stringType = originalItem->type();
95 item.stringData = originalItem->getAsString();
98 item.storageType = Item::StorageTypeBinaryData
    [all...]
  /external/chromium_org/chrome/browser/download/
download_ui_controller.cc 36 virtual void OnNewDownloadReady(content::DownloadItem* item) OVERRIDE;
40 content::DownloadItem* item) {
44 if (item->GetState() != content::DownloadItem::IN_PROGRESS)
50 content::DownloadControllerAndroid::Get()->OnDownloadStarted(item);
64 virtual void OnNewDownloadReady(content::DownloadItem* item) OVERRIDE;
70 content::DownloadItem* item) {
71 content::WebContents* web_contents = item->GetWebContents();
83 browser->ShowDownload(item);
114 content::DownloadItem* item) {
117 OnDownloadUpdated(manager, item);
    [all...]
  /external/chromium_org/chrome/browser/profiles/
profile_list_desktop.cc 32 const AvatarMenu::Item& ProfileListDesktop::GetItemAt(size_t index) const {
48 AvatarMenu::Item* item = new AvatarMenu::Item(i - omitted_item_count_, local
51 item->name = profile_info_->GetNameOfProfileAtIndex(i);
52 item->sync_state = profile_info_->GetUserNameOfProfileAtIndex(i);
53 item->profile_path = profile_info_->GetPathOfProfileAtIndex(i);
54 item->supervised = profile_info_->ProfileIsSupervisedAtIndex(i);
55 item->signed_in = !item->sync_state.empty()
82 const AvatarMenu::Item item = GetItemAt(i); local
    [all...]
  /system/core/include/cutils/
list.h 58 static inline void list_add_tail(struct listnode *head, struct listnode *item)
60 item->next = head;
61 item->prev = head->prev;
62 head->prev->next = item;
63 head->prev = item;
66 static inline void list_add_head(struct listnode *head, struct listnode *item)
68 item->next = head->next;
69 item->prev = head;
70 head->next->prev = item;
71 head->next = item;
    [all...]
  /external/clang/test/CodeGenCXX/
typeid-cxx11.cpp 6 struct Item {
13 template<typename T> constexpr Item item(const char *name) { function in namespace:Test1
22 constexpr Item items[] = {
23 item<A>("A"), item<B>("B"), item<C>("C"), item<int>("int")
  /device/asus/flo/camera/QCamera2/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;
63 static inline void cam_list_insert_before_node(struct cam_list *item,
66 item->next = node;
67 item->prev = node->prev;
68 item->prev->next = item;
    [all...]
  /device/lge/hammerhead/camera/QCamera2/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;
63 static inline void cam_list_insert_before_node(struct cam_list *item,
66 item->next = node;
67 item->prev = node->prev;
68 item->prev->next = item;
    [all...]
  /device/moto/shamu/camera/QCamera2/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;
63 static inline void cam_list_insert_before_node(struct cam_list *item,
66 item->next = node;
67 item->prev = node->prev;
68 item->prev->next = item;
    [all...]
  /system/core/libdiskconfig/
write_lst.c 32 struct write_list *item; local
34 if (!(item = malloc(sizeof(struct write_list) + data_len))) {
39 item->len = data_len;
40 return item;
44 free_wl(struct write_list *item)
46 if (item)
47 free(item);
51 wlist_add(struct write_list **lst, struct write_list *item)
53 item->next = (*lst);
54 *lst = item;
    [all...]
  /external/chromium_org/ash/shelf/
shelf_navigator.cc 13 // Returns true if accelerator processing should skip the shelf item with the
32 const ShelfItem& item = items[i]; local
33 if (ShouldSkip(item.type))
36 if (item.status == STATUS_RUNNING && first_running < 0)
39 if (item.status == STATUS_ACTIVE) {
45 // If nothing is active, try to active the first running item.
55 // Find the next item and activate it.
58 const ShelfItem& item = items[i]; local
59 if (ShouldSkip(item.type))
62 // Skip already active item
    [all...]
  /external/qemu/android/utils/
refset.c 18 _arefSet_hashItem( void* item )
22 hash = (uint32_t)(ptrdiff_t)item >> 2;
23 if (sizeof(item) > 4)
24 hash ^= ((uint64_t)(ptrdiff_t)item >> 32);
30 _arefSet_lookup( ARefSet* s, void* item)
32 uint32_t hash = _arefSet_hashItem(item);
38 if (*pnode == item || *pnode == NULL)
48 _arefSet_lookupInsert( ARefSet* s, void* item)
50 uint32_t hash = _arefSet_hashItem(item);
62 } else if (*pnode == item)
93 void* item = s->buckets[nn]; local
    [all...]
  /developers/build/prebuilts/gradle/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
SessionManager.java 35 * Actual playback of a single media item is abstracted into a Player interface,
92 // If player supports queuing, get status of each item. Player is
96 PlaylistItem item = mPlaylist.get(i); local
97 mPlayer.getStatus(item, (i == mPlaylist.size() - 1) /* update */);
100 // Otherwise, only need to get status for current item. Player is
118 // append new item with initial status PLAYBACK_STATE_PENDING
119 PlaylistItem item = new PlaylistItem( local
121 mPlaylist.add(item);
124 // if player supports queuing, enqueue the item now
126 mPlayer.enqueue(item);
148 PlaylistItem item = getCurrentItem(); local
243 PlaylistItem item = getCurrentItem(); local
318 PlaylistItem item = getCurrentItem(); local
325 PlaylistItem item = getCurrentItem(); local
381 PlaylistItem item = getCurrentItem(); local
    [all...]
  /developers/samples/android/media/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
SessionManager.java 35 * Actual playback of a single media item is abstracted into a Player interface,
92 // If player supports queuing, get status of each item. Player is
96 PlaylistItem item = mPlaylist.get(i); local
97 mPlayer.getStatus(item, (i == mPlaylist.size() - 1) /* update */);
100 // Otherwise, only need to get status for current item. Player is
118 // append new item with initial status PLAYBACK_STATE_PENDING
119 PlaylistItem item = new PlaylistItem( local
121 mPlaylist.add(item);
124 // if player supports queuing, enqueue the item now
126 mPlayer.enqueue(item);
148 PlaylistItem item = getCurrentItem(); local
243 PlaylistItem item = getCurrentItem(); local
318 PlaylistItem item = getCurrentItem(); local
325 PlaylistItem item = getCurrentItem(); local
381 PlaylistItem item = getCurrentItem(); local
    [all...]
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
SessionManager.java 33 * Actual playback of a single media item is abstracted into a Player interface,
88 // If player supports queuing, get status of each item. Player is
92 PlaylistItem item = mPlaylist.get(i); local
93 mPlayer.getStatus(item, (i == mPlaylist.size() - 1) /* update */);
96 // Otherwise, only need to get status for current item. Player is
114 // append new item with initial status PLAYBACK_STATE_PENDING
115 PlaylistItem item = new PlaylistItem( local
117 mPlaylist.add(item);
120 // if player supports queuing, enqueue the item now
122 mPlayer.enqueue(item);
144 PlaylistItem item = getCurrentItem(); local
251 PlaylistItem item = getCurrentItem(); local
326 PlaylistItem item = getCurrentItem(); local
333 PlaylistItem item = getCurrentItem(); local
389 PlaylistItem item = getCurrentItem(); local
    [all...]

Completed in 761 milliseconds

1 23 4 5 6 7 8 91011>>