Searched refs:list (Results 201 - 225 of 4308) sorted by relevance

1234567891011>>

/external/libcxx/test/containers/sequences/list/list.ops/
H A Dsplice_pos_list.pass.cpp10 // <list>
12 // void splice(const_iterator position, list& x);
18 #include <list>
28 std::list<int> l1;
29 std::list<int> l2;
37 std::list<int> l1;
38 std::list<int> l2(a2, a2+1);
44 std::list<int>::const_iterator i = l1.begin();
48 std::list<int> l1;
49 std::list<in
[all...]
H A Dsplice_pos_list_iter.pass.cpp10 // <list>
12 // void splice(const_iterator position, list<T,Allocator>& x, iterator i);
18 #include <list>
28 std::list<int> l1;
29 std::list<int> l2(a2, a2+1);
35 std::list<int>::const_iterator i = l1.begin();
39 std::list<int> l1;
40 std::list<int> l2(a2, a2+2);
46 std::list<int>::const_iterator i = l1.begin();
52 std::list<in
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DRuleListController.java10 notice, this list of conditions and the following disclaimer.
12 notice, this list of conditions and the following disclaimer in the
54 private final JList list = new JList(); field in class:RuleListController
55 private final JScrollPane scroll = new JScrollPane( list,
74 list.setModel(model);
79 if(model.getSize() > 0) list.setSelectedIndex(0);
80 list.updateUI();
94 list.setOpaque(false);
95 list.setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION);
96 list
117 getListCellRendererComponent( JList list, Object value, int index, boolean isSelected, boolean hasFocus) argument
[all...]
/external/chromium_org/chrome/common/extensions/
H A Dupdate_manifest_unittest.cc127 EXPECT_TRUE(parser.results().list.empty());
131 EXPECT_TRUE(parser.results().list.empty());
135 EXPECT_TRUE(parser.results().list.empty());
139 EXPECT_TRUE(parser.results().list.empty());
145 EXPECT_FALSE(parser.results().list.empty());
146 const UpdateManifest::Result* firstResult = &parser.results().list.at(0);
163 EXPECT_FALSE(parser.results().list.empty());
164 firstResult = &parser.results().list.at(0);
170 EXPECT_FALSE(parser.results().list.empty());
176 EXPECT_FALSE(parser.results().list
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dfree_list.h9 // notice, this list of conditions and the following disclaimer.
11 // copyright notice, this list of conditions and the following disclaimer
69 // We only have time to do minimal checking. We don't traverse the list, but
72 Log(kCrash, __FILE__, __LINE__, "Circular loop in list detected: ", next);
123 // Pops the top element off the linked list whose first element is at
124 // |*list|, and updates |*list| to point to the next element in the
125 // list. Returns the address of the element that was removed from the
126 // linked list. |list| mus
127 FL_Pop(void **list) argument
146 FL_Push(void **list, void *element) argument
[all...]
/external/libcxx/test/containers/sequences/list/list.cons/
H A Dassign_move.pass.cpp10 // <list>
12 // list& operator=(list&& c);
14 #include <list>
24 std::list<MoveOnly, test_allocator<MoveOnly> > l(test_allocator<MoveOnly>(5));
25 std::list<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5));
31 std::list<MoveOnly, test_allocator<MoveOnly> > l2(test_allocator<MoveOnly>(5));
38 std::list<MoveOnly, test_allocator<MoveOnly> > l(test_allocator<MoveOnly>(5));
39 std::list<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5));
45 std::list<MoveOnl
[all...]
H A Dmove_alloc.pass.cpp10 // <list>
12 // list(list&& c, const allocator_type& a);
14 #include <list>
24 std::list<MoveOnly, test_allocator<MoveOnly> > l(test_allocator<MoveOnly>(5));
25 std::list<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5));
31 std::list<MoveOnly, test_allocator<MoveOnly> > l2(std::move(l), test_allocator<MoveOnly>(6));
37 std::list<MoveOnly, test_allocator<MoveOnly> > l(test_allocator<MoveOnly>(5));
38 std::list<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5));
44 std::list<MoveOnl
[all...]
/external/libcxx/test/containers/sequences/list/list.modifiers/
H A Dinsert_iter_value.pass.cpp10 // <list>
18 #include <list>
47 std::list<int> l1(a1, a1+3);
48 std::list<int>::iterator i = l1.insert(next(l1.cbegin()), 4);
52 assert(l1 == std::list<int>(a2, a2+4));
65 assert(l1 == std::list<int>(a2, a2+4));
69 std::list<int> v1(3);
70 std::list<int> v2(3);
80 std::list<int, min_allocator<int>> l1(a1, a1+3);
81 std::list<in
[all...]
H A Dinsert_iter_rvalue.pass.cpp10 // <list>
18 #include <list>
28 std::list<MoveOnly> l1;
40 std::list<int> v1(3);
41 std::list<int> v2(3);
49 std::list<MoveOnly, min_allocator<MoveOnly>> l1;
61 std::list<int, min_allocator<int>> v1(3);
62 std::list<int, min_allocator<int>> v2(3);
H A Demplace.pass.cpp10 // <list>
18 #include <list>
42 std::list<A> c;
56 std::list<A> c1;
57 std::list<A> c2;
58 std::list<A>::iterator i = c1.emplace(c2.cbegin(), 2, 3.5);
66 std::list<A, min_allocator<A>> c;
80 std::list<A, min_allocator<A>> c1;
81 std::list<A, min_allocator<A>> c2;
82 std::list<
[all...]
/external/chromium_org/chrome/browser/ui/webui/
H A Dvoicesearch_ui.cc69 // Helper functions for collecting a list of key-value pairs that will
71 void AddPair(base::ListValue* list, argument
77 list->Append(results.release());
81 void AddLineBreak(base::ListValue* list) { argument
82 AddPair(list, ASCIIToUTF16(base::StringPiece()),
119 scoped_ptr<base::ListValue> list(new base::ListValue());
122 AddOperatingSystemInfo(list.get());
123 AddAudioInfo(list.get());
124 AddLanguageInfo(list.get());
125 AddHotwordInfo(list
135 AddOperatingSystemInfo(base::ListValue* list) argument
184 AddAudioInfo(base::ListValue* list) argument
220 AddLanguageInfo(base::ListValue* list) argument
238 AddHotwordInfo(base::ListValue* list) argument
261 AddHotwordExtensionInfo(base::ListValue* list) argument
313 AddAppListInfo(base::ListValue* list) argument
[all...]
/external/chromium_org/chrome/browser/resources/bookmark_manager/css/
H A Dbmm.css21 list {
27 list > * {
41 list > * > * {
50 list > * > .label {
56 list > * > .url {
62 list > :hover > .url,
63 list > [selected] > .url {
76 html[dir=rtl] list .label {
80 list > .folder > .label {
87 list > * >
[all...]
/external/chromium_org/chrome/browser/resources/print_preview/search/
H A Ddestination_list_item.css5 .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/webrtc/modules/rtp_rtcp/source/
H A Dfec_receiver_unittest.cc13 #include <list>
43 void GenerateFEC(std::list<Packet*>* media_packets,
44 std::list<Packet*>* fec_packets,
53 std::list<RtpPacket*>* media_rtp_packets,
54 std::list<Packet*>* media_packets) {
95 void DeletePackets(std::list<Packet*>* packets) {
104 std::list<RtpPacket*> media_rtp_packets;
105 std::list<Packet*> media_packets;
107 std::list<Packet*> fec_packets;
111 std::list<RtpPacke
[all...]
/external/e2fsprogs/lib/blkid/
H A Ddevno.c60 * This function adds an entry to the directory list
62 static void add_to_dirlist(const char *name, struct dir_list **list) argument
74 dp->next = *list;
75 *list = dp;
79 * This function frees a directory list
81 static void free_dirlist(struct dir_list **list) argument
85 for (dp = *list; dp; dp = next) {
90 *list = NULL;
93 void blkid__scan_dir(char *dirname, dev_t devno, struct dir_list **list, argument
125 if (list
143 struct dir_list *list = NULL, *new_list = NULL; local
[all...]
/external/chromium_org/cc/test/
H A Dlayer_tree_json_parser.cc27 base::ListValue* list; local
28 success &= dict->GetList("Bounds", &list);
30 success &= list->GetInteger(0, &width);
31 success &= list->GetInteger(1, &height);
32 success &= dict->GetList("Position", &list);
34 success &= list->GetDouble(0, &position_x);
35 success &= list->GetDouble(1, &position_y);
46 success &= dict->GetList("ImageAperture", &list);
48 success &= list->GetInteger(0, &aperture_x);
49 success &= list
[all...]
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dcontent_settings_exception_area_browsertest.js57 var list = ContentSettings.getExceptionsList('cookies', 'normal');
58 assertEquals(1, list.items.length);
65 expectEquals('block', list.dataModel.item(0).setting);
66 expectEquals(origin, list.dataModel.item(0).origin);
69 list.deleteItemAtIndex(0);
72 expectEquals(1, list.items.length);
86 list.items[0].finishEdit(origin, 'block');
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXMenuList.cpp8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
61 AXObject* list = cache->getOrCreate(MenuListPopupRole); local
62 if (!list)
65 toAXMockObject(list)->setParent(this);
66 if (list->accessibilityIsIgnored()) {
67 cache->remove(list->axObjectID());
71 m_children.append(list);
73 list->addChildren();
/external/chromium_org/third_party/icu/source/common/
H A Dulist.h19 U_CAPI void U_EXPORT2 ulist_addItemEndList(UList *list, const void *data, UBool forceDelete, UErrorCode *status);
21 U_CAPI void U_EXPORT2 ulist_addItemBeginList(UList *list, const void *data, UBool forceDelete, UErrorCode *status);
23 U_CAPI UBool U_EXPORT2 ulist_containsString(const UList *list, const char *data, int32_t length);
25 U_CAPI void *U_EXPORT2 ulist_getNext(UList *list);
27 U_CAPI int32_t U_EXPORT2 ulist_getListSize(const UList *list);
29 U_CAPI void U_EXPORT2 ulist_resetList(UList *list);
31 U_CAPI void U_EXPORT2 ulist_deleteList(UList *list);
/external/chromium_org/ui/keyboard/resources/elements/
H A Dkb-altkey-data.js29 * Retrieves a list of alternative keys to display on a long-press.
31 * @param {boolean=} opt_force If true, force the creation of a list
34 * @return {?{id: string, list: string}}
67 * Creates a list of alternate candidates to display in a popup on a
76 * @param {string=} opt_additionalKeys Optional list of additional keys
77 * to include in the candidates list.
85 var list = altKeys.keys;
87 list = opt_additionalKeys.split('').concat(list);
88 list
[all...]
/external/icu/icu4c/source/common/
H A Dulist.h19 U_CAPI void U_EXPORT2 ulist_addItemEndList(UList *list, const void *data, UBool forceDelete, UErrorCode *status);
21 U_CAPI void U_EXPORT2 ulist_addItemBeginList(UList *list, const void *data, UBool forceDelete, UErrorCode *status);
23 U_CAPI UBool U_EXPORT2 ulist_containsString(const UList *list, const char *data, int32_t length);
25 U_CAPI void *U_EXPORT2 ulist_getNext(UList *list);
27 U_CAPI int32_t U_EXPORT2 ulist_getListSize(const UList *list);
29 U_CAPI void U_EXPORT2 ulist_resetList(UList *list);
31 U_CAPI void U_EXPORT2 ulist_deleteList(UList *list);
/external/libcxx/test/containers/sequences/list/list.capacity/
H A Dresize_size_value.pass.cpp10 // <list>
14 #include <list>
22 std::list<double> l(5, 2);
26 assert(l == std::list<double>(2, 2));
29 std::list<double> l(5, 2);
38 std::list<double, min_allocator<double>> l(5, 2);
42 assert((l == std::list<double, min_allocator<double>>(2, 2)));
45 std::list<double, min_allocator<double>> l(5, 2);
/external/chromium_org/chrome/browser/policy/
H A Dmanaged_bookmarks_policy_handler.cc35 base::ListValue* list = NULL;
36 if (!value || !value->GetAsList(&list))
39 FilterBookmarks(list);
43 void ManagedBookmarksPolicyHandler::FilterBookmarks(base::ListValue* list) { argument
45 base::ListValue::iterator it = list->begin();
46 while (it != list->end()) {
49 it = list->Erase(it, NULL);
56 // Every bookmark must have a name, and then either a URL of a list of
61 it = list->Erase(it, NULL);
74 it = list
[all...]
/external/chromium_org/gpu/config/
H A Dgpu_util.cc24 std::string IntSetToString(const std::set<int>& list) { argument
26 for (std::set<int>::const_iterator it = list.begin();
27 it != list.end(); ++it) {
35 void StringToIntSet(const std::string& str, std::set<int>* list) { argument
36 DCHECK(list);
43 list->insert(number);
65 scoped_ptr<GpuDriverBugList> list(GpuDriverBugList::Create());
66 list->LoadList(kGpuDriverBugListJson,
68 std::set<int> workarounds = list->MakeDecision(
/external/guava/guava-tests/test/com/google/common/collect/
H A DListsTest.java195 List<String> list = Lists.newArrayList();
197 list.add(elements[i]);
198 return Lists.reverse(list);
217 List<String> list = Lists.newLinkedList();
219 list.add(elements[i]);
220 return Lists.reverse(list);
305 ArrayList<Integer> list = Lists.newArrayList();
306 assertEquals(Collections.emptyList(), list);
310 ArrayList<Integer> list = Lists.newArrayListWithCapacity(0);
311 assertEquals(Collections.emptyList(), list);
437 checkFooBarBazList(List<String> list) argument
497 assertIndexIsOutOfBounds(List<String> list, int index) argument
582 assertTransformModifiable(List<String> list) argument
654 assertTransformListIterator(List<String> list) argument
732 assertTransformIterator(List<String> list) argument
[all...]

Completed in 806 milliseconds

1234567891011>>