Searched refs:list (Results 51 - 75 of 4125) sorted by relevance

1234567891011>>

/external/libcxx/test/containers/sequences/list/list.ops/
H A DAndroid.mk17 test_makefile := external/libcxx/test/containers/sequences/list/list.ops/Android.mk
19 test_name := containers/sequences/list/list.ops/sort
23 test_name := containers/sequences/list/list.ops/sort_comp
27 test_name := containers/sequences/list/list.ops/merge
31 test_name := containers/sequences/list/list
[all...]
/external/chromium_org/third_party/skia/tests/
H A DSListTest.cpp19 const SkTInternalSList<SListEntry>& list,
22 if (!list.isEmpty()) {
26 if (0 != list.getCount()) {
27 ERRORF(reporter, "%s - List count is not zero, %d instead", stage, list.getCount());
30 if (NULL != list.head()) {
38 const SkTInternalSList<SListEntry>& list,
41 SListEntry* next = list.head();
42 if (list.getCount() != count) {
43 ERRORF(reporter, "%s - List was too short, %d instead of %d", stage, list.getCount(), count);
70 SkTInternalSList<SListEntry> list; local
18 verifyEmptyList(skiatest::Reporter* reporter, const SkTInternalSList<SListEntry>& list, const char* stage) argument
37 verifyList(skiatest::Reporter* reporter, const SkTInternalSList<SListEntry>& list, const char* stage, SListEntry* start, int count, int step = 1) argument
[all...]
/external/javassist/src/main/javassist/compiler/ast/
H A DASTList.java21 * A linked list.
53 * Returns the car part of the list.
62 * Returns the cdr part of the list.
77 ASTList list = this;
78 while (list != null) {
80 ASTree a = list.left;
82 list = list.right;
90 * Returns the number of the elements in this list.
96 public static int length(ASTList list) { argument
[all...]
/external/skia/tests/
H A DSListTest.cpp19 const SkTInternalSList<SListEntry>& list,
22 if (!list.isEmpty()) {
26 if (0 != list.getCount()) {
27 ERRORF(reporter, "%s - List count is not zero, %d instead", stage, list.getCount());
30 if (NULL != list.head()) {
38 const SkTInternalSList<SListEntry>& list,
41 SListEntry* next = list.head();
42 if (list.getCount() != count) {
43 ERRORF(reporter, "%s - List was too short, %d instead of %d", stage, list.getCount(), count);
70 SkTInternalSList<SListEntry> list; local
18 verifyEmptyList(skiatest::Reporter* reporter, const SkTInternalSList<SListEntry>& list, const char* stage) argument
37 verifyList(skiatest::Reporter* reporter, const SkTInternalSList<SListEntry>& list, const char* stage, SListEntry* start, int count, int step = 1) argument
[all...]
/external/chromium_org/third_party/freetype/src/cache/
H A Dftcmru.c169 FTC_MruList_Init( FTC_MruList list, argument
175 list->num_nodes = 0;
176 list->max_nodes = max_nodes;
177 list->nodes = NULL;
178 list->clazz = *clazz;
179 list->data = data;
180 list->memory = memory;
185 FTC_MruList_Reset( FTC_MruList list )
187 while ( list->nodes )
188 FTC_MruList_Remove( list, lis
308 FTC_MruList_Remove( FTC_MruList list, FTC_MruNode node ) argument
327 FTC_MruList_RemoveSelection( FTC_MruList list, FTC_MruNode_CompareFunc selection, FT_Pointer key ) argument
[all...]
/external/freetype/src/cache/
H A Dftcmru.c169 FTC_MruList_Init( FTC_MruList list, argument
175 list->num_nodes = 0;
176 list->max_nodes = max_nodes;
177 list->nodes = NULL;
178 list->clazz = *clazz;
179 list->data = data;
180 list->memory = memory;
185 FTC_MruList_Reset( FTC_MruList list )
187 while ( list->nodes )
188 FTC_MruList_Remove( list, lis
308 FTC_MruList_Remove( FTC_MruList list, FTC_MruNode node ) argument
327 FTC_MruList_RemoveSelection( FTC_MruList list, FTC_MruNode_CompareFunc selection, FT_Pointer key ) argument
[all...]
/external/libcxx/test/containers/sequences/list/list.capacity/
H A DAndroid.mk17 test_makefile := external/libcxx/test/containers/sequences/list/list.capacity/Android.mk
19 test_name := containers/sequences/list/list.capacity/resize_size_value
23 test_name := containers/sequences/list/list.capacity/resize_size
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/options/css/
H A Dlist.css18 list > * {
29 list:not([disabled]) > :hover {
33 /* TODO(stuartmorgan): Once this becomes the list style for other WebUI pages
37 list:not([hasElementFocus]) > [selected],
38 list:not([hasElementFocus]) > [lead][selected] {
43 list[hasElementFocus] > [selected],
44 list[hasElementFocus] > [lead][selected],
45 list:not([hasElementFocus]) > [selected]:hover,
46 list:not([hasElementFocus]) > [selected][lead]:hover {
51 list[disable
[all...]
/external/libcxx/test/containers/sequences/list/list.modifiers/
H A DAndroid.mk17 test_makefile := external/libcxx/test/containers/sequences/list/list.modifiers/Android.mk
19 test_name := containers/sequences/list/list.modifiers/push_front_rvalue
23 test_name := containers/sequences/list/list.modifiers/erase_iter_iter_db4
27 test_name := containers/sequences/list/list.modifiers/push_back_exception_safety
31 test_name := containers/sequences/list/list
[all...]
H A Dclear.pass.cpp10 // <list>
14 #include <list>
23 std::list<int> c(a, a+3);
30 std::list<int, min_allocator<int>> c(a, a+3);
/external/libcxx/test/containers/sequences/list/
H A Dtypes.pass.cpp10 // <list>
13 // class list
25 #include <list>
32 static_assert((std::is_same<std::list<int>::value_type, int>::value), "");
33 static_assert((std::is_same<std::list<int>::allocator_type, std::allocator<int> >::value), "");
34 static_assert((std::is_same<std::list<int>::reference, std::allocator<int>::reference>::value), "");
35 static_assert((std::is_same<std::list<int>::const_reference, std::allocator<int>::const_reference>::value), "");
36 static_assert((std::is_same<std::list<int>::pointer, std::allocator<int>::pointer>::value), "");
37 static_assert((std::is_same<std::list<int>::const_pointer, std::allocator<int>::const_pointer>::value), "");
39 static_assert((std::is_same<std::list<in
[all...]
/external/chromium_org/net/proxy/
H A Dproxy_list_unittest.cc47 // If the proxy list string parsed to empty, automatically fall-back to
61 ProxyList list; local
62 list.SetFromPacString(tests[i].pac_input);
63 EXPECT_EQ(tests[i].pac_output, list.ToPacString());
64 EXPECT_FALSE(list.IsEmpty());
87 ProxyList list; local
88 list.SetFromPacString(tests[i].pac_input);
89 list.RemoveProxiesWithoutScheme(tests[i].filter);
90 EXPECT_EQ(tests[i].filtered_pac_output, list.ToPacString());
103 ProxyList list; local
115 ProxyList list; local
132 ProxyList list; local
150 ProxyList list; local
172 ProxyList list; local
188 ProxyList list; local
206 ProxyList list; local
[all...]
/external/chromium-trace/trace-viewer/src/ui/
H A Dlist_and_associated_view.css6 x-list-and-associated-view {
11 x-list-and-associated-view > .x-list-view {
15 x-list-and-associated-view > :nth-child(2) {
/external/chromium_org/components/precache/core/
H A Durl_list_provider.h8 #include <list>
15 // Interface for classes that can provide a list of URLs.
18 typedef base::Callback<void(const std::list<GURL>&)> GetURLsCallback;
20 // Runs |callback| with a list of URLs. |callback| may be run before the call
/external/libcxx/test/containers/sequences/list/list.special/
H A DAndroid.mk17 test_makefile := external/libcxx/test/containers/sequences/list/list.special/Android.mk
19 test_name := containers/sequences/list/list.special/swap
23 test_name := containers/sequences/list/list.special/swap_noexcept
27 test_name := containers/sequences/list/list.special/db_swap_1
/external/libcxx/test/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.cons/
H A Dcontainer.pass.cpp17 #include <list>
29 test(std::list<int>());
/external/smali/util/src/main/java/org/jf/util/
H A DLinearSearch.java10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
39 * Performs a linear search in a sorted list for key, starting at initialGuess
41 * @param list The sorted list to search
48 public static <T> int linearSearch(List<? extends T> list, Comparator<T> comparator, T key, int initialGuess) { argument
50 if (guess >= list.size()) {
51 guess = list.size()-1;
53 int comparison = comparator.compare(list.get(guess), key);
59 while (guess < list
[all...]
/external/stlport/test/compiler/
H A Dmovable.cpp1 #include <list>
14 list<S> l;
/external/strace/
H A Dxlate.el8 ;; notice, this list of conditions and the following disclaimer.
10 ;; notice, this list of conditions and the following disclaimer in the
35 (defvar xlate-list nil
39 "Grab all of the defined names in the region and save them in xlate-list."
42 (setq xlate-list nil)
47 (setq xlate-list (cons (buffer-substring (match-beginning 1)
49 xlate-list)))
53 (setq xlate-list (nreverse xlate-list)))
55 (defun build-xlate (&optional list)
[all...]
/external/chromium-trace/trace-viewer/src/tcmalloc/
H A Dheap_instance_track.css11 list-style: none;
12 list-style-position: outside;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebNodeList.cpp9 * notice, this list of conditions and the following disclaimer.
11 * copyright notice, this list of conditions and the following disclaimer
53 WebNodeList::WebNodeList(const PassRefPtrWillBeRawPtr<NodeList>& list) argument
54 : m_private(list)
58 WebNodeList& WebNodeList::operator=(const PassRefPtrWillBeRawPtr<NodeList>& list) argument
60 m_private = list;
/external/libcxx/test/utilities/optional/optional.syn/
H A Doptional_includes_initializer_list.pass.cpp21 std::initializer_list<int> list;
/external/chromium_org/chrome/browser/resources/memory_internals/
H A Dlist.css5 table.list {
10 table.list tr:nth-child(odd) td {
14 table.list td {
19 table.list .header th {
24 table.list .bottom th,
25 table.list th.bottom {
/external/fio/
H A Dcgroup.h9 void cgroup_kill(struct flist_head *list);
13 static inline int cgroup_setup(struct thread_data *td, struct flist_head *list, argument
24 static inline void cgroup_kill(struct flist_head *list) argument
/external/mockito/src/org/mockito/internal/util/collections/
H A DIdentitySet.java12 LinkedList list = new LinkedList(); field in class:IdentitySet
15 for(Object existing:list) {
24 list.add(o);

Completed in 1527 milliseconds

1234567891011>>