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

1234567891011>>

/external/chromium-trace/trace-viewer/src/cc/
H A Dpicture_ops_list_view.css6 picture-ops-list-view {
11 picture-ops-list-view > .x-list-view {
16 picture-ops-list-view > .x-list-view .list-item {
24 picture-ops-list-view > .x-list-view .list-item:hover {
29 picture-ops-list
[all...]
/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 (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/net/proxy/
H A Dproxy_list_unittest.cc48 // If the proxy list string parsed to empty, automatically fall-back to
62 ProxyList list; local
63 list.SetFromPacString(tests[i].pac_input);
64 EXPECT_EQ(tests[i].pac_output, list.ToPacString());
65 EXPECT_FALSE(list.IsEmpty());
88 ProxyList list; local
89 list.SetFromPacString(tests[i].pac_input);
90 list.RemoveProxiesWithoutScheme(tests[i].filter);
91 EXPECT_EQ(tests[i].filtered_pac_output, list.ToPacString());
104 ProxyList list; local
116 ProxyList list; local
133 ProxyList list; local
151 ProxyList list; local
173 ProxyList list; local
194 ProxyList list; local
214 ProxyList list; local
235 ProxyList list; local
[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/openfst/src/include/fst/
H A Dslist.h18 // Includes slist definition or defines in terms of STL list as a fallback.
37 #include <list>
41 using std::list;
43 template <typename T> class slist : public list<T> {
45 typedef typename list<T>::iterator iterator;
46 typedef typename list<T>::const_iterator const_iterator;
48 using list<T>::erase;
/external/chromium_org/cc/quads/
H A Dlist_container_unittest.cc68 ListContainer<DrawQuad> list(sizeof(kLargestDrawQuad));
72 list.AllocateAndConstruct<SimpleDrawQuadConstructMagicNumberOne>();
74 list.AllocateAndConstruct<SimpleDrawQuadConstructMagicNumberTwo>();
76 EXPECT_EQ(size, list.size());
77 EXPECT_EQ(dq_1, list.front());
78 EXPECT_EQ(dq_2, list.back());
85 ListContainer<DrawQuad> list(sizeof(kLargestDrawQuad));
88 MockDrawQuad* dq_1 = list.AllocateAndConstruct<MockDrawQuad>();
91 EXPECT_EQ(size, list.size());
92 EXPECT_EQ(dq_1, list
140 ListContainer<SharedQuadState> list; local
156 ListContainer<SharedQuadState> list; local
169 ListContainer<SharedQuadState> list; local
189 ListContainer<SharedQuadState> list; local
325 ListContainer<SharedQuadState> list; local
362 ListContainer<SharedQuadState> list; local
407 ListContainer<SharedQuadState> list; local
[all...]
/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...]
/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-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
51 WebNodeList::WebNodeList(const PassRefPtrWillBeRawPtr<NodeList>& list) argument
52 : m_private(list)
56 WebNodeList& WebNodeList::operator=(const PassRefPtrWillBeRawPtr<NodeList>& list) argument
58 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 {

Completed in 851 milliseconds

1234567891011>>