Searched refs:list (Results 101 - 125 of 4125) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/common/
H A Dulist.c33 static void ulist_addFirstItem(UList *list, UListNode *newItem);
58 * Function called by addItemEndList or addItemBeginList when the first item is added to the list.
61 static void ulist_addFirstItem(UList *list, UListNode *newItem) { argument
64 list->head = newItem;
65 list->tail = newItem;
66 list->currentIndex = 0;
69 U_CAPI void U_EXPORT2 ulist_addItemEndList(UList *list, const void *data, UBool forceDelete, UErrorCode *status) { argument
72 if (U_FAILURE(*status) || list == NULL || data == NULL) {
84 if (list->size == 0) {
85 ulist_addFirstItem(list, newIte
96 ulist_addItemBeginList(UList *list, const void *data, UBool forceDelete, UErrorCode *status) argument
124 ulist_containsString(const UList *list, const char *data, int32_t length) argument
146 ulist_getNext(UList *list) argument
160 ulist_getListSize(const UList *list) argument
168 ulist_resetList(UList *list) argument
175 ulist_deleteList(UList *list) argument
[all...]
/external/libcxx/test/containers/sequences/list/list.special/
H A Ddb_swap_1.pass.cpp10 // <list>
13 // void swap(list<T,Alloc>& x, list<T,Alloc>& y);
19 #include <list>
31 std::list<int> c1(a1, a1+sizeof(a1)/sizeof(a1[0]));
32 std::list<int> c2(a2, a2+sizeof(a2)/sizeof(a2[0]));
33 std::list<int>::iterator i1 = c1.begin();
34 std::list<int>::iterator i2 = c2.begin();
38 std::list<int>::iterator j = i1;
46 std::list<in
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsContextAnnotation.cpp9 * notice, this list of conditions and the following disclaimer.
11 * copyright notice, this list of conditions and the following disclaimer
57 void GraphicsContextAnnotation::asAnnotationList(AnnotationList &list) const
59 list.clear();
62 list.append(std::make_pair(AnnotationKeyRendererName, m_rendererName));
65 list.append(std::make_pair(AnnotationKeyPaintPhase, m_paintPhase));
68 list.append(std::make_pair(AnnotationKeyElementId, m_elementId));
71 list.append(std::make_pair(AnnotationKeyElementClass, m_elementClass));
74 list.append(std::make_pair(AnnotationKeyElementTag, m_elementTag));
/external/chromium_org/third_party/freetype/include/freetype/
H A Dftlist.h5 /* Generic list support for FreeType (specification). */
21 /* This file implements functions relative to list processing. Its */
56 /* This section contains various definitions related to list */
84 /* Find the list node for a given listed object. */
87 /* list :: A pointer to the parent list. */
94 FT_List_Find( FT_List list,
104 /* Append an element to the end of a list. */
107 /* list :: A pointer to the parent list
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dlinked_list.h9 // notice, this list of conditions and the following disclaimer.
11 // copyright notice, this list of conditions and the following disclaimer
33 // Some very basic linked list functions for dealing with using void * as
51 inline void SLL_Push(void **list, void *element) { argument
52 SLL_SetNext(element, *list);
53 *list = element;
56 inline void *SLL_Pop(void **list) { argument
57 void *result = *list;
58 *list = SLL_Next(*list);
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dlinked_list.h9 // notice, this list of conditions and the following disclaimer.
11 // copyright notice, this list of conditions and the following disclaimer
33 // Some very basic linked list functions for dealing with using void * as
51 inline void SLL_Push(void **list, void *element) { argument
52 SLL_SetNext(element, *list);
53 *list = element;
56 inline void *SLL_Pop(void **list) { argument
57 void *result = *list;
58 *list = SLL_Next(*list);
[all...]
/external/freetype/include/
H A Dftlist.h5 /* Generic list support for FreeType (specification). */
21 /* This file implements functions relative to list processing. Its */
56 /* This section contains various definitions related to list */
84 /* Find the list node for a given listed object. */
87 /* list :: A pointer to the parent list. */
94 FT_List_Find( FT_List list,
104 /* Append an element to the end of a list. */
107 /* list :: A pointer to the parent list
[all...]
/external/libcxx/test/containers/sequences/list/list.cons/
H A Dassign_copy.pass.cpp10 // <list>
12 // list& operator=(const list& c);
14 #include <list>
22 std::list<int, test_allocator<int> > l(3, 2, test_allocator<int>(5));
23 std::list<int, test_allocator<int> > l2(l, test_allocator<int>(3));
29 std::list<int, other_allocator<int> > l(3, 2, other_allocator<int>(5));
30 std::list<int, other_allocator<int> > l2(l, other_allocator<int>(3));
37 std::list<int, min_allocator<int> > l(3, 2, min_allocator<int>());
38 std::list<in
[all...]
H A Dcopy_alloc.pass.cpp10 // <list>
12 // list(const list& c, const allocator_type& a);
14 #include <list>
23 std::list<int, test_allocator<int> > l(3, 2, test_allocator<int>(5));
24 std::list<int, test_allocator<int> > l2(l, test_allocator<int>(3));
29 std::list<int, other_allocator<int> > l(3, 2, other_allocator<int>(5));
30 std::list<int, other_allocator<int> > l2(l, other_allocator<int>(3));
36 std::list<int, min_allocator<int> > l(3, 2, min_allocator<int>());
37 std::list<in
[all...]
/external/libcxx/test/containers/sequences/list/list.modifiers/
H A Derase_iter_db2.pass.cpp10 // <list>
18 #include <list>
29 std::list<int> l1(a1, a1+3);
30 std::list<int> l2(a1, a1+3);
31 std::list<int>::const_iterator i = l2.begin();
38 std::list<int, min_allocator<int>> l1(a1, a1+3);
39 std::list<int, min_allocator<int>> l2(a1, a1+3);
40 std::list<int, min_allocator<int>>::const_iterator i = l2.begin();
H A Derase_iter_iter_db1.pass.cpp10 // <list>
18 #include <list>
29 std::list<int> l1(a1, a1+3);
30 std::list<int> l2(a1, a1+3);
31 std::list<int>::iterator i = l1.erase(l2.cbegin(), next(l1.cbegin()));
37 std::list<int, min_allocator<int>> l1(a1, a1+3);
38 std::list<int, min_allocator<int>> l2(a1, a1+3);
39 std::list<int, min_allocator<int>>::iterator i = l1.erase(l2.cbegin(), next(l1.cbegin()));
H A Derase_iter_iter_db2.pass.cpp10 // <list>
18 #include <list>
29 std::list<int> l1(a1, a1+3);
30 std::list<int> l2(a1, a1+3);
31 std::list<int>::iterator i = l1.erase(l1.cbegin(), next(l2.cbegin()));
37 std::list<int, min_allocator<int>> l1(a1, a1+3);
38 std::list<int, min_allocator<int>> l2(a1, a1+3);
39 std::list<int, min_allocator<int>>::iterator i = l1.erase(l1.cbegin(), next(l2.cbegin()));
H A Derase_iter_iter_db3.pass.cpp10 // <list>
18 #include <list>
29 std::list<int> l1(a1, a1+3);
30 std::list<int> l2(a1, a1+3);
31 std::list<int>::iterator i = l1.erase(l2.cbegin(), next(l2.cbegin()));
37 std::list<int, min_allocator<int>> l1(a1, a1+3);
38 std::list<int, min_allocator<int>> l2(a1, a1+3);
39 std::list<int, min_allocator<int>>::iterator i = l1.erase(l2.cbegin(), next(l2.cbegin()));
H A Dpop_back.pass.cpp10 // <list>
18 #include <list>
27 std::list<int> c(a, a+3);
29 assert(c == std::list<int>(a, a+2));
31 assert(c == std::list<int>(a, a+1));
42 std::list<int, min_allocator<int>> c(a, a+3);
44 assert((c == std::list<int, min_allocator<int>>(a, a+2)));
46 assert((c == std::list<int, min_allocator<int>>(a, a+1)));
H A Dpop_front.pass.cpp10 // <list>
14 #include <list>
23 std::list<int> c(a, a+3);
25 assert(c == std::list<int>(a+1, a+3));
27 assert(c == std::list<int>(a+2, a+3));
34 std::list<int, min_allocator<int>> c(a, a+3);
36 assert((c == std::list<int, min_allocator<int>>(a+1, a+3)));
38 assert((c == std::list<int, min_allocator<int>>(a+2, a+3)));
/external/libcxx/test/containers/sequences/list/list.ops/
H A Dmerge.pass.cpp10 // <list>
12 // void merge(list& x);
14 #include <list>
25 std::list<int> c1(a1, a1+sizeof(a1)/sizeof(a1[0]));
26 std::list<int> c2(a2, a2+sizeof(a2)/sizeof(a2[0]));
28 assert(c1 == std::list<int>(a3, a3+sizeof(a3)/sizeof(a3[0])));
35 std::list<int, min_allocator<int>> c1(a1, a1+sizeof(a1)/sizeof(a1[0]));
36 std::list<int, min_allocator<int>> c2(a2, a2+sizeof(a2)/sizeof(a2[0]));
38 assert((c1 == std::list<int, min_allocator<int>>(a3, a3+sizeof(a3)/sizeof(a3[0]))));
H A Dmerge_comp.pass.cpp10 // <list>
12 // template <class Compare> void merge(list& x, Compare comp);
14 #include <list>
26 std::list<int> c1(a1, a1+sizeof(a1)/sizeof(a1[0]));
27 std::list<int> c2(a2, a2+sizeof(a2)/sizeof(a2[0]));
29 assert(c1 == std::list<int>(a3, a3+sizeof(a3)/sizeof(a3[0])));
36 std::list<int, min_allocator<int>> c1(a1, a1+sizeof(a1)/sizeof(a1[0]));
37 std::list<int, min_allocator<int>> c2(a2, a2+sizeof(a2)/sizeof(a2[0]));
39 assert((c1 == std::list<int, min_allocator<int>>(a3, a3+sizeof(a3)/sizeof(a3[0]))));
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dftlist.h5 /* Generic list support for FreeType (specification). */
21 /* This file implements functions relative to list processing. Its */
56 /* This section contains various definitions related to list */
84 /* Find the list node for a given listed object. */
87 /* list :: A pointer to the parent list. */
94 FT_List_Find( FT_List list,
104 /* Append an element to the end of a list. */
107 /* list :: A pointer to the parent list
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dftlist.h5 /* Generic list support for FreeType (specification). */
21 /* This file implements functions relative to list processing. Its */
56 /* This section contains various definitions related to list */
84 /* Find the list node for a given listed object. */
87 /* list :: A pointer to the parent list. */
94 FT_List_Find( FT_List list,
104 /* Append an element to the end of a list. */
107 /* list :: A pointer to the parent list
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_ListTest.java27 List<Integer> list; // must contain the Integers 0 to 99 in order field in class:Support_ListTest
35 list = l;
43 elem = list.get(counter);
48 assertTrue("ListTest - hashCode failed", hashCode == list.hashCode());
50 list.add(50, new Integer(1000));
51 assertTrue("ListTest - a) add with index failed--did not insert", list
55 list.get(51).equals(new Integer(50)));
58 list.get(49).equals(new Integer(49)));
60 list.set(50, new Integer(2000));
61 assertTrue("ListTest - a) set failed--did not set", list
128 t_listIterator(List<Integer> list) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DTypeListItem.java27 * Representation of a list of class references.
39 /** {@code non-null;} the actual list */
40 private final TypeList list; field in class:TypeListItem
45 * @param list {@code non-null;} the actual list
47 public TypeListItem(TypeList list) { argument
48 super(ALIGNMENT, (list.size() * ELEMENT_SIZE) + HEADER_SIZE);
50 this.list = list;
56 return StdTypeList.hashContents(list);
[all...]
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstArray.java26 /** {@code non-null;} the actual list of contents */
27 private final List list; field in class:CstArray
32 * @param list {@code non-null;} the actual list of contents
34 public CstArray(List list) { argument
35 if (list == null) {
36 throw new NullPointerException("list == null");
39 list.throwIfMutable();
41 this.list = list;
[all...]
/external/chromium_org/ui/events/platform/
H A Dplatform_event_source_unittest.cc79 TestPlatformEventDispatcher(int id, std::vector<int>* list) argument
81 list_(list),
116 TestPlatformEventObserver(int id, std::vector<int>* list) argument
117 : id_(id), list_(list) {
255 std::vector<int> list; local
256 TestPlatformEventDispatcher first_d(12, &list);
257 TestPlatformEventObserver first_o(10, &list);
258 TestPlatformEventDispatcher second_d(23, &list);
259 TestPlatformEventObserver second_o(20, &list);
263 EXPECT_EQ(std::vector<int>(expected, expected + arraysize(expected)), list); local
269 std::vector<int> list; local
292 std::vector<int> list; local
335 RunCallbackDuringDispatch(int id, std::vector<int>* list) argument
361 std::vector<int> list; local
382 std::vector<int> list; local
403 std::vector<int> list; local
421 std::vector<int> list; local
441 std::vector<int> list; local
465 std::vector<int> list; local
534 std::vector<int> list; variable
570 DestroyScopedHandleDispatcher(int id, std::vector<int>* list) argument
610 NestedTask(std::vector<int>* list, TestPlatformEventDispatcher* dispatcher) argument
644 std::vector<int> list; variable
691 NestedTask(scoped_ptr<ScopedEventDispatcher> dispatch_handle, std::vector<int>* list) argument
744 std::vector<int> list; variable
[all...]
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dnetwork_unittest.cc9 * this list of conditions and the following disclaimer.
11 * this list of conditions and the following disclaimer in the documentation
55 const NetworkManager::NetworkList& list,
57 network_manager.MergeNetworkList(list, changed);
67 NetworkManager::NetworkList list; local
68 network_manager.CreateNetworks(include_ignored, &list);
69 return list;
198 // Add ipv4_network1 to the list of networks.
199 NetworkManager::NetworkList list; local
200 list
54 MergeNetworkList(BasicNetworkManager& network_manager, const NetworkManager::NetworkList& list, bool* changed ) argument
256 SetupNetworks(NetworkManager::NetworkList* list) argument
296 NetworkManager::NetworkList list; local
371 NetworkManager::NetworkList list; local
407 NetworkManager::NetworkList list; local
462 NetworkManager::NetworkList list; local
493 NetworkManager::NetworkList list; local
544 NetworkManager::NetworkList list; local
578 ifaddrs list; local
601 NetworkManager::NetworkList list; local
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dnetwork_unittest.cc38 const NetworkManager::NetworkList& list,
40 network_manager.MergeNetworkList(list, changed);
50 NetworkManager::NetworkList list; local
51 network_manager.CreateNetworks(include_ignored, &list);
52 return list;
181 // Add ipv4_network1 to the list of networks.
182 NetworkManager::NetworkList list; local
183 list.push_back(new Network(ipv4_network1));
185 MergeNetworkList(manager, list, &changed);
187 list
37 MergeNetworkList(BasicNetworkManager& network_manager, const NetworkManager::NetworkList& list, bool* changed ) argument
239 SetupNetworks(NetworkManager::NetworkList* list) argument
279 NetworkManager::NetworkList list; local
354 NetworkManager::NetworkList list; local
390 NetworkManager::NetworkList list; local
445 NetworkManager::NetworkList list; local
476 NetworkManager::NetworkList list; local
527 NetworkManager::NetworkList list; local
561 ifaddrs list; local
584 NetworkManager::NetworkList list; local
[all...]

Completed in 1800 milliseconds

1234567891011>>