HomeSort by relevance Sort by last modified time
    Searched refs:list (Results 1 - 25 of 10570) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/stlport/test/unit/
list_header_test.cpp 8 #include <list>
  /ndk/tests/device/test-gnustl-full/unit/
list_header_test.cpp 8 #include <list>
  /ndk/tests/device/test-stlport/unit/
list_header_test.cpp 8 #include <list>
  /external/clang/test/CodeGen/
2002-08-19-RecursiveLocals.c 5 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 };
  /hardware/intel/common/wrs_omxil_core/utils/src/
list.c 2 * list.c, list
21 #include <list.h>
23 void __list_init(struct list *entry)
32 struct list *__list_alloc(void)
34 struct list *new;
36 new = malloc(sizeof(struct list));
42 struct list *list_alloc(void *data)
44 struct list *new;
53 void __list_free(struct list *entry
    [all...]
  /hardware/intel/common/wrs_omxil_core/utils/inc/
list.h 2 * list.h, list
26 struct list { struct
27 struct list *next;
28 struct list *prev;
33 void __list_init(struct list *);
35 struct list *__list_alloc(void);
36 struct list *list_alloc(void *);
38 void __list_free(struct list *);
39 void list_free_all(struct list *);
    [all...]
  /external/chromium_org/net/spdy/
write_blocked_list_test.cc 17 IntWriteBlockedList list; local
18 EXPECT_FALSE(list.HasWriteBlockedStreams());
19 list.PushBack(1, 1);
20 EXPECT_TRUE(list.HasWriteBlockedStreams());
21 EXPECT_EQ(1, list.GetHighestPriorityWriteBlockedList());
22 list.PushBack(1, 0);
23 EXPECT_TRUE(list.HasWriteBlockedStreams());
24 EXPECT_EQ(0, list.GetHighestPriorityWriteBlockedList());
28 IntWriteBlockedList list; local
29 list.PushBack(1, 4)
38 IntWriteBlockedList list; local
57 IntWriteBlockedList list; local
    [all...]
  /external/libcxx/test/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.cons/
container.fail.cpp 19 #include <list>
23 std::front_insert_iterator<std::list<int> > i = std::list<int>();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.cons/
container.fail.cpp 19 #include <list>
23 std::front_insert_iterator<std::list<int> > i = std::list<int>();
  /external/smali/util/src/test/java/org/jf/util/
LinearSearchTest.java 10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
39 import java.util.List;
44 List<Integer> list = Lists.newArrayList(0, 1, 3, 4); local
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)
    [all...]
  /external/chromium_org/gpu/config/
gpu_blacklist.cc 20 GpuBlacklist* list = new GpuBlacklist(); local
21 list->AddSupportedFeature("accelerated_2d_canvas",
23 list->AddSupportedFeature("gpu_compositing",
25 list->AddSupportedFeature("webgl",
27 list->AddSupportedFeature("flash_3d",
29 list->AddSupportedFeature("flash_stage3d",
31 list->AddSupportedFeature("flash_stage3d_baseline",
33 list->AddSupportedFeature("accelerated_video_decode",
35 list->AddSupportedFeature("accelerated_video_encode",
37 list->AddSupportedFeature("panel_fitting"
    [all...]
  /external/clang/test/Analysis/
kmalloc-linux.c 16 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 == NULL
46 struct test **list, *t; local
    [all...]
malloc-three-arg.c 16 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 == NULL
46 struct test **list, *t; local
    [all...]
  /external/chromium_org/v8/test/cctest/
test-list.cc 7 // 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)
159 List<int>* list = new List<int>(0); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_simple_list.h 5 * 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)->next->prev = elem;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
simple_list.h 5 * 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)->next->prev = elem;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_simple_list.h 5 * 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)->next->prev = elem;
    [all...]
  /external/mesa3d/src/mesa/main/
simple_list.h 5 * 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)->next->prev = elem;
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/list/
adt.hpp 32 # define BOOST_PP_LIST_FIRST(list) BOOST_PP_LIST_FIRST_D(list)
35 # define BOOST_PP_LIST_FIRST_D(list) BOOST_PP_LIST_FIRST_I list
37 # define BOOST_PP_LIST_FIRST_D(list) BOOST_PP_LIST_FIRST_I ## list
44 # define BOOST_PP_LIST_REST(list) BOOST_PP_LIST_REST_D(list)
47 # define BOOST_PP_LIST_REST_D(list) BOOST_PP_LIST_REST_I list
    [all...]
reverse.hpp 18 # include <boost/preprocessor/list/fold_left.hpp>
23 # define BOOST_PP_LIST_REVERSE(list) BOOST_PP_LIST_FOLD_LEFT(BOOST_PP_LIST_REVERSE_O, BOOST_PP_NIL, list)
25 # define BOOST_PP_LIST_REVERSE(list) BOOST_PP_LIST_REVERSE_I(list)
26 # define BOOST_PP_LIST_REVERSE_I(list) BOOST_PP_LIST_FOLD_LEFT(BOOST_PP_LIST_REVERSE_O, BOOST_PP_NIL, list)
34 # define BOOST_PP_LIST_REVERSE_D(d, list) BOOST_PP_LIST_FOLD_LEFT_ ## d(BOOST_PP_LIST_REVERSE_O, BOOST_PP_NIL, list)
36 # define BOOST_PP_LIST_REVERSE_D(d, list) BOOST_PP_LIST_REVERSE_D_I(d, list
    [all...]
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_search_path_list_unittest.cpp 33 SearchPathList list; local
34 EXPECT_FALSE(list.FindFile("/foo"));
35 EXPECT_FALSE(list.FindFile("/tmp/zoo"));
36 EXPECT_FALSE(list.FindFile("/tmp/foo/bar"));
41 SearchPathList list; local
42 list.AddPaths("/tmp/foo");
43 EXPECT_STREQ("/tmp/foo/bar", list.FindFile("bar"));
44 EXPECT_FALSE(list.FindFile("zoo"));
45 EXPECT_FALSE(list.FindFile("foo"));
50 SearchPathList list; local
60 SearchPathList list; local
68 SearchPathList list; local
80 SearchPathList list; local
    [all...]
  /ndk/sources/android/crazy_linker/src/
crazy_linker_search_path_list_unittest.cpp 33 SearchPathList list; local
34 EXPECT_FALSE(list.FindFile("/foo"));
35 EXPECT_FALSE(list.FindFile("/tmp/zoo"));
36 EXPECT_FALSE(list.FindFile("/tmp/foo/bar"));
41 SearchPathList list; local
42 list.AddPaths("/tmp/foo");
43 EXPECT_STREQ("/tmp/foo/bar", list.FindFile("bar"));
44 EXPECT_FALSE(list.FindFile("zoo"));
45 EXPECT_FALSE(list.FindFile("foo"));
50 SearchPathList list; local
60 SearchPathList list; local
68 SearchPathList list; local
80 SearchPathList list; local
    [all...]
  /external/chromium_org/base/containers/
linked_list_unittest.cc 34 // Checks that when iterating |list| (either from head to tail, or from
37 void ExpectListContentsForDirection(const LinkedList<Node>& list,
40 for (const LinkNode<Node>* node = (forward ? list.head() : list.tail());
41 node != list.end();
51 void ExpectListContents(const LinkedList<Node>& list,
56 ExpectListContentsForDirection(list, num_nodes, node_ids, true);
60 ExpectListContentsForDirection(list, num_nodes, node_ids, false);
65 LinkedList<Node> list; local
66 EXPECT_EQ(list.end(), list.head())
72 LinkedList<Node> list; local
107 LinkedList<Node> list; local
182 LinkedList<Node> list; local
219 LinkedList<Node> list; local
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/store/imap/
ImapListTest.java 37 ImapList list = new ImapList(); local
39 assertTrue(list.isList());
40 assertFalse(list.isString());
42 assertTrue(list.isEmpty());
43 assertEquals(0, list.size());
45 list.add(STRING_1);
46 assertFalse(list.isEmpty());
47 assertEquals(1, list.size());
49 list.add(STRING_2);
50 assertEquals(2, list.size())
65 ImapList list = buildList(ImapList.EMPTY, ABC, LIST_1, ImapString.EMPTY); local
96 ImapList list = buildList(ImapList.EMPTY, STRING_1, LIST_1, ImapString.EMPTY); local
109 ImapList list = buildList(ImapList.EMPTY, STRING_1, LIST_1, ImapString.EMPTY); local
122 ImapList list = buildList(ImapList.EMPTY, STRING_1, LIST_1, ImapString.EMPTY); local
139 ImapList list = buildList( local
166 ImapList list = buildList(K1, LIST_1); local
179 ImapList list = buildList(K1, STRING_1); local
195 ImapList list = buildList(K1, K2, K3); local
    [all...]
  /external/bluetooth/bluedroid/osi/include/
list.h 17 void list_free(list_t *list);
20 bool list_is_empty(const list_t *list);
21 size_t list_length(const list_t *list);
22 void *list_front(const list_t *list);
23 void *list_back(const list_t *list);
26 bool list_insert_after(list_t *list, list_node_t *prev_node, void *data);
27 bool list_prepend(list_t *list, void *data);
28 bool list_append(list_t *list, void *data);
29 bool list_remove(list_t *list, void *data);
30 void list_clear(list_t *list);
    [all...]

Completed in 753 milliseconds

1 2 3 4 5 6 7 8 91011>>