Searched refs:ListItem (Results 1 - 19 of 19) sorted by relevance

/external/webrtc/src/system_wrappers/source/
H A Dlist_stl.h19 class ListItem class in namespace:webrtc
24 ListItem(const void* ptr);
25 ListItem(const unsigned int item);
26 virtual ~ListItem();
31 mutable std::list<ListItem*>::iterator this_iter_;
34 DISALLOW_COPY_AND_ASSIGN(ListItem);
52 ListItem* First() const;
53 ListItem* Last() const;
54 ListItem* Next(ListItem* ite
[all...]
H A Dlist_stl.cc16 ListItem::ListItem(const void* item) function in class:webrtc::ListItem
23 ListItem::ListItem(const unsigned int item) function in class:webrtc::ListItem
30 ListItem::~ListItem()
34 void* ListItem::GetItem() const
39 unsigned int ListItem::GetUnsignedItem() const
73 ListItem* item = new ListItem(pt
[all...]
H A Dlist_no_stl.cc17 ListItem::ListItem(const void* item) function in class:webrtc::ListItem
25 ListItem::ListItem(const unsigned int item) function in class:webrtc::ListItem
33 ListItem::~ListItem()
37 void* ListItem::GetItem() const
42 unsigned int ListItem::GetUnsignedItem() const
81 ListItem* item = new ListItem(pt
[all...]
H A Dlist_unittest.cc17 using ::webrtc::ListItem;
41 const ListItem* item) const = 0;
42 virtual ListItem* CreateListItem(unsigned int item_id) = 0;
53 ListItem* First() const {
56 ListItem* Last() const {
59 ListItem* Next(ListItem* item) const {
62 ListItem* Previous(ListItem* item) const {
65 virtual int Erase(ListItem* ite
[all...]
/external/chromium/chrome/browser/resources/shared/js/cr/ui/
H A Dlist_item.js13 var ListItem = cr.ui.define('li');
15 ListItem.prototype = {
53 cr.defineProperty(ListItem, 'selected', cr.PropertyKind.BOOL_ATTR,
63 cr.defineProperty(ListItem, 'lead', cr.PropertyKind.BOOL_ATTR);
69 cr.defineProperty(ListItem, 'listIndex');
72 ListItem: ListItem
H A Dgrid.js18 const ListItem = cr.ui.ListItem;
24 * @extends {cr.ui.ListItem}
34 __proto__: ListItem.prototype,
40 ListItem.prototype.decorate.call(this, arguments);
176 * @param {Object.<string, ListItem>} cachedItems Old items cache.
177 * @param {Object.<string, ListItem>} newCachedItems New items cache.
H A Dlist.js39 * @param {ListItem=} opt_item The list item to use to do the measuring. If
139 * @type {function(): !ListItem}
142 itemConstructor_: cr.ui.ListItem,
146 * @type {function(): !ListItem}
257 * @type {cr.ui.ListItem}
295 * @type {!Array<cr.ui.ListItem>}
486 * @return {ListItem} The list item containing |element|, or null.
675 * @return {ListItem} The first found list item or null if not found.
689 * @return {ListItem} The found list item or null if not found.
697 * @param {ListItem} ite
[all...]
/external/webrtc/src/system_wrappers/interface/
H A Dlist_wrapper.h19 class ListItem class in namespace:webrtc
24 ListItem(const void* ptr);
25 ListItem(const unsigned int item);
26 virtual ~ListItem();
31 ListItem* next_;
32 ListItem* prev_;
58 // Pops the first ListItem from the list
61 // Pops the last ListItem from the list
67 // Returns a pointer to the first ListItem in the list.
68 ListItem* Firs
[all...]
/external/webrtc/src/system_wrappers/test/list/
H A Dlist.cc29 int GetStoredIntegerValue(ListItem* list_item)
41 ListItem* list_item = list.First();
60 ListItem* item_iter = list.First();
105 ListItem* first_item = test_list.First();
108 ListItem* last_item = test_list.Last();
111 ListItem* second_item = test_list.Next(first_item);
116 ListItem* second_to_last_item = test_list.Previous(last_item);
134 ListItem* insert_item_last = new ListItem(reinterpret_cast<void*>(&element_array[kNumberOfElements - 2]));
137 ListItem* insert_item_last
[all...]
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_list_test.cc18 struct ListItem { struct in namespace:__sanitizer
19 ListItem *next;
22 typedef IntrusiveList<ListItem> List;
26 static void SetList(List *l, ListItem *x = 0,
27 ListItem *y = 0, ListItem *z = 0) {
34 static void CheckList(List *l, ListItem *i1, ListItem *i2 = 0, ListItem *i3 = 0,
35 ListItem *i
[all...]
/external/chromium/chrome/browser/resources/options/chromeos/
H A Dproxy_rules_list.js7 const ListItem = cr.ui.ListItem;
103 * @extends {cr.ui.ListItem}
122 __proto__: ListItem.prototype,
126 ListItem.prototype.decorate.call(this);
H A Daccounts_user_list.js7 const ListItem = cr.ui.ListItem;
131 * @extends {cr.ui.ListItem}
150 __proto__: ListItem.prototype,
154 ListItem.prototype.decorate.call(this);
/external/chromium/chrome/browser/resources/options/
H A Ddeletable_item_list.js7 const ListItem = cr.ui.ListItem;
16 __proto__: ListItem.prototype,
41 ListItem.prototype.decorate.call(this);
H A Dautocomplete_list.js8 const ListItem = cr.ui.ListItem;
14 * @extends {cr.ui.ListItem}
33 __proto__: ListItem.prototype,
37 ListItem.prototype.decorate.call(this);
H A Dlanguage_list.js10 const ListItem = cr.ui.ListItem;
17 * @extends {DeletableItem.ListItem}
231 while (target != null && !(target instanceof ListItem)) {
244 // ListItem should be the only draggable element type in the page,
246 if (target instanceof ListItem) {
273 // The drop is only successful on another ListItem.
274 if (!(dropTarget instanceof ListItem) ||
/external/chromium/chrome/browser/resources/shared/js/cr/ui/table/
H A Dtable_list.js12 const ListItem = cr.ui.ListItem;
67 * @return {!ListItem} The newly created list item.
71 var listItem = new ListItem({label: ''});
/external/chromium/chrome/browser/resources/bookmark_manager/js/bmm/
H A Dbookmark_list.js10 const ListItem = cr.ui.ListItem;
351 * @extends {cr.ui.ListItem}
370 __proto__: ListItem.prototype,
374 ListItem.prototype.decorate.call(this);
/external/chromium/chrome/browser/resources/bookmark_manager/js/
H A Dmain.js7 const ListItem = cr.ui.ListItem;
599 if (target instanceof ListItem) {
830 if (overElement instanceof ListItem) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 3030 milliseconds