Searched refs:list (Results 1 - 25 of 3865) sorted by relevance

1234567891011>>

/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-regr6/
H A Dmodule.py4 list(1)
5 + list(2)
6 + list(2)
7 + list(2)
8 + list(2)
9 + list(2)
10 + list(2)
11 + list(2)
12 + list(2)
13 + list(
[all...]
/external/clang/test/CodeGen/
H A D2002-08-19-RecursiveLocals.c5 struct list { struct
7 struct list *Next;
10 static struct list B; /* Forward declare static */
11 static struct list A = { 7, &B };
12 static struct list B = { 8, &A };
14 extern struct list D; /* forward declare normal var */
16 struct list C = { 7, &D };
17 struct list D = { 8, &C };
H A D2002-07-14-MiscListTests.c3 // Test list stuff
7 // Test opaque structure support. the list type is defined later
8 struct list;
10 struct list *PassThroughList(struct list *L) {
17 typedef struct list { struct
19 struct list *Next;
20 } list; typedef in typeref:struct:list
22 list *Data;
28 Data = (list*)mallo
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-299979.js7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
31 var list = Object.freeze([1, 2, 3]);
32 assertThrows(function() { list.unshift(4); }, TypeError);
33 assertThrows(function() { list.shift(); }, TypeError);
/external/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.cons/
H A Dcontainer.fail.cpp19 #include <list>
23 std::front_insert_iterator<std::list<int> > i = std::list<int>();
/external/smali/util/src/test/java/org/jf/util/
H A DLinearSearchTest.java10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
44 List<Integer> list = Lists.newArrayList(0, 1, 3, 4);
46 doTest(list, 5, 10);
47 doTest(list, 5, 4);
48 doTest(list, 5, 3);
49 doTest(list, 5, 2);
50 doTest(list, 5, 1);
51 doTest(list, 5, 0);
53 doTest(list,
96 doTest(List<Integer> list, int key, int guess) argument
[all...]
/external/curl/src/
H A Dslist_wc.c33 * slist_wc_append() appends a string to the linked list. This function can be
36 struct slist_wc *slist_wc_append(struct slist_wc *list, argument
44 if(!list) {
45 list = malloc(sizeof(struct slist_wc));
47 if(!list) {
52 list->first = new_item;
53 list->last = new_item;
54 return list;
57 list->last->next = new_item;
58 list
63 slist_wc_free_all(struct slist_wc *list) argument
[all...]
/external/libgdx/gdx/test/com/badlogic/gdx/utils/
H A DPooledLinkedListTest.java10 private PooledLinkedList<Integer> list; field in class:PooledLinkedListTest
14 list = new PooledLinkedList<Integer>(10);
15 list.add(1);
16 list.add(2);
17 list.add(3);
22 assertEquals(3, list.size());
23 list.iter();
24 list.next();
25 list.remove();
26 assertEquals(2, list
[all...]
/external/clang/test/Analysis/
H A Dkmalloc-linux.c16 struct test **list, *t; local
19 list = kmalloc(sizeof(*list) * 10, __GFP_ZERO);
20 if (list == NULL)
24 t = list[i];
27 free(list); // no-warning
31 struct test **list, *t; local
34 list = kmalloc(sizeof(*list) * 10, 0);
35 if (list
46 struct test **list, *t; local
[all...]
H A Dmalloc-three-arg.c16 struct test **list, *t; local
19 list = malloc(sizeof(*list) * 10, NULL, M_ZERO);
20 if (list == NULL)
24 t = list[i];
27 free(list); // no-warning
31 struct test **list, *t; local
34 list = malloc(sizeof(*list) * 10, NULL, 0);
35 if (list
46 struct test **list, *t; local
[all...]
/external/parameter-framework/upstream/parameter/
H A DResults.h9 * list of conditions and the following disclaimer.
12 * this list of conditions and the following disclaimer in the documentation and/or
32 #include <list>
38 /** String list type which can hold list of error/info */
39 typedef std::list<std::string> Results;
/external/strace/
H A Dgenerate_mpers_am.sh3 list="$(sed -n '/^strace_SOURCES[[:space:]]*=/,/^[[:space:]]*# end of strace_SOURCES/ s/^[[:space:]]*\([[:alnum:]][^.]*\.c\)[[:space:]]*\\$/\1/p' Makefile.am |
9 mpers_source_files = $list
13 $list > mpers_xlat.h
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DListExtensions.cs14 * notice, this list of conditions and the following disclaimer.
16 * notice, this list of conditions and the following disclaimer in the
47 public static bool add( this IList list, object value ) argument
49 int count = list.Count;
50 list.Add( value );
51 return list.Count == count + 1;
55 public static void add<T>( this ICollection<T> list, T value ) argument
57 list.Add( value );
61 public static void add<T>( this List<T> list, T value ) argument
63 list
67 add( this IList list, int index, object value ) argument
73 addAll( this List<object> list, IEnumerable items ) argument
79 addAll( this IList list, IEnumerable items ) argument
85 addAll( this ICollection<T> list, IEnumerable<T> items ) argument
93 addElement( this List<object> list, object value ) argument
105 contains( this IList list, object value ) argument
111 contains( this ICollection<T> list, T value ) argument
117 elementAt( this IList<T> list, int index ) argument
123 get( this IList list, int index ) argument
129 get( this IList<T> list, int index ) argument
136 get( this List<T> list, int index ) argument
142 remove( this IList list, int index ) argument
150 remove( this IList<T> list, T item ) argument
156 set( this IList list, int index, object value ) argument
162 set( this IList<T> list, int index, T value ) argument
168 set( this List<T> list, int index, T value ) argument
174 setSize( this List<T> list, int size ) argument
206 subList( this IList list, int fromIndex, int toIndex ) argument
217 subList( this IList<T> list, int fromIndex, int toIndex ) argument
227 subList( this List<T> list, int fromIndex, int toIndex ) argument
[all...]
/external/v8/test/cctest/
H A Dtest-list.cc7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
55 // Check that we can add (a reference to) an element of the list
58 // Add elements to the list to grow it to its capacity.
59 List<int, ZeroingAllocationPolicy> list(4);
60 list.Add(1);
61 list.Add(2);
62 list.Add(3);
63 list.Add(4);
66 list
159 List<int>* list = new List<int>(0); local
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_simple_list.h5 * Intended to work with a list sentinal which is created as an empty
6 * list. Insert & delete are O(1).
41 * Remove an element from list.
54 * Insert an element to the list head.
56 * \param list list.
59 #define insert_at_head(list, elem) \
61 (elem)->prev = list; \
62 (elem)->next = (list)->next; \
63 (list)
[all...]
/external/mesa3d/src/mesa/main/
H A Dsimple_list.h5 * Intended to work with a list sentinal which is created as an empty
6 * list. Insert & delete are O(1).
50 * Remove an element from list.
61 * Insert an element to the list head.
63 * \param list list.
66 #define insert_at_head(list, elem) \
68 (elem)->prev = list; \
69 (elem)->next = (list)->next; \
70 (list)
[all...]
/external/toybox/lib/
H A Dllist.c1 /* llist.c - Linked list functions
3 * Linked list structures have a next pointer as their first element.
26 // Call a function (such as free()) on each element of a linked list.
27 void llist_traverse(void *list, void (*using)(void *node)) argument
29 void *old = list;
31 while (list) {
32 void *pop = llist_pop(&list);
35 // End doubly linked list too.
36 if (old == list) break;
40 // Return the first item from the list, advancin
42 llist_pop(void *list) argument
54 dlist_pop(void *list) argument
67 dlist_add_nomalloc(struct double_list **list, struct double_list *new) argument
79 dlist_add(struct double_list **list, char *data) argument
90 dlist_terminate(void *list) argument
[all...]
/external/toybox/toys/other/
H A Dtac.c20 struct arg_list *list = NULL; local
31 temp->next = list;
33 list = temp;
37 while (list) {
38 struct arg_list *temp = list->next;
39 xprintf("%s", list->arg);
40 free(list->arg);
41 free(list);
42 list = temp;
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dlist.h2 * Doubly-linked list
13 * struct dl_list - Doubly-linked list
22 static inline void dl_list_init(struct dl_list *list) argument
24 list->next = list;
25 list->prev = list;
28 static inline void dl_list_add(struct dl_list *list, struct dl_list *item) argument
30 item->next = list->next;
31 item->prev = list;
36 dl_list_add_tail(struct dl_list *list, struct dl_list *item) argument
49 dl_list_empty(struct dl_list *list) argument
54 dl_list_len(struct dl_list *list) argument
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dlist.h2 * Doubly-linked list
13 * struct dl_list - Doubly-linked list
22 static inline void dl_list_init(struct dl_list *list) argument
24 list->next = list;
25 list->prev = list;
28 static inline void dl_list_add(struct dl_list *list, struct dl_list *item) argument
30 item->next = list->next;
31 item->prev = list;
36 dl_list_add_tail(struct dl_list *list, struct dl_list *item) argument
49 dl_list_empty(struct dl_list *list) argument
54 dl_list_len(struct dl_list *list) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dlist.h2 * Doubly-linked list
13 * struct dl_list - Doubly-linked list
22 static inline void dl_list_init(struct dl_list *list) argument
24 list->next = list;
25 list->prev = list;
28 static inline void dl_list_add(struct dl_list *list, struct dl_list *item) argument
30 item->next = list->next;
31 item->prev = list;
36 dl_list_add_tail(struct dl_list *list, struct dl_list *item) argument
49 dl_list_empty(struct dl_list *list) argument
54 dl_list_len(struct dl_list *list) argument
[all...]
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
H A DListOrganizer.java26 private List<ElementType> list; field in class:ListOrganizer
28 public ListOrganizer(List<ElementType> list) { argument
29 this.list = list;
34 if(list.remove(element)) {
35 list.add(list.size(), element);
48 list.remove(objectToMove);
49 int refIndex = list.indexOf(reference);
50 list
[all...]
/external/chromium-trace/catapult/tracing/tracing/ui/base/
H A Dlist_view.css6 * /deep/ .x-list-view {
10 * /deep/ .x-list-view:focus {
14 * /deep/ .x-list-view * {
18 * /deep/ .x-list-view > .list-item {
22 * /deep/ .x-list-view:focus > .list-item[selected] {
28 * /deep/ .x-list-view > .list-item[selected] {
/external/libpng/tests/
H A Dpngimage-full2 exec ./pngimage --exhaustive --list-combos --log "${srcdir}/contrib/pngsuite/"*.png
H A Dpngimage-quick2 exec ./pngimage --list-combos --log "${srcdir}/contrib/pngsuite/"*.png

Completed in 997 milliseconds

1234567891011>>