HomeSort by relevance Sort by last modified time
    Searched defs:List (Results 1 - 25 of 291) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/deqp/executor/
xeTestCaseResult.cpp 59 List::List (void)
63 List::~List (void)
  /external/clang/test/CodeGen/
disable-tail-calls.c 3 typedef struct List {
4 struct List *next;
6 } List;
8 // CHECK-LABEL: define %struct.List* @find
9 List *find(List *head, int data) {
14 // CHECK: call %struct.List* @find
types.c 25 struct List {
30 struct List returned;
33 void test3(struct List a) {
  /external/swiftshader/third_party/LLVM/unittests/ADT/
ilistTest.cpp 27 ilist<Node> List;
28 List.push_back(Node(1));
29 EXPECT_EQ(1, List.back().Value);
30 EXPECT_EQ(0, List.back().getPrevNode());
31 EXPECT_EQ(0, List.back().getNextNode());
33 List.push_back(Node(2));
34 EXPECT_EQ(2, List.back().Value);
35 EXPECT_EQ(2, List.front().getNextNode()->Value);
36 EXPECT_EQ(1, List.back().getPrevNode()->Value);
38 const ilist<Node> &ConstList = List;
    [all...]
  /external/autotest/client/cros/cellular/pseudomodem/
messaging.py 26 def List(self):
33 @returns: The list of SMS object paths.
  /prebuilts/go/darwin-x86/test/fixedbugs/issue5614.dir/
rethinkgo.go 8 type List []interface{}
15 return Exp{args: List{e, useOutdated}}
  /prebuilts/go/linux-x86/test/fixedbugs/issue5614.dir/
rethinkgo.go 8 type List []interface{}
15 return Exp{args: List{e, useOutdated}}
  /external/clang/test/CodeGenCXX/
constructor-template.cpp 22 template <typename T> class List {
24 List(){ } // List<BinomialNode<int>*>::List() remains undefined.
25 ~List() {}
39 List<BinomialNode<T>*> nodes;
pragma-unroll.cpp 4 void while_test(int *List, int Length) {
11 List[i] = i * 2;
17 void do_test(int *List, int Length) {
24 List[i] = i * 2;
30 void for_test(int *List, int Length) {
35 List[i] = i * 2;
42 double List[100];
45 for (int i : List) {
47 List[i] = i;
54 void for_define_test(int *List, int Length, int Value)
    [all...]
  /external/llvm/unittests/ADT/
ilistTest.cpp 30 ilist<Node> List;
31 List.push_back(Node(1));
32 EXPECT_EQ(1, List.back().Value);
33 EXPECT_EQ(nullptr, List.getPrevNode(List.back()));
34 EXPECT_EQ(nullptr, List.getNextNode(List.back()));
36 List.push_back(Node(2));
37 EXPECT_EQ(2, List.back().Value);
38 EXPECT_EQ(2, List.getNextNode(List.front())->Value)
    [all...]
  /prebuilts/go/darwin-x86/test/ken/
rob1.go 7 // Test general operation using a list implementation.
20 type List struct {
24 func (list *List) Init() {
25 list.head = nil
28 func (list *List) Insert(i Item) {
31 item.next = list.head
32 list.head = item
35 func (list *List) Print() string
    [all...]
  /prebuilts/go/linux-x86/test/ken/
rob1.go 7 // Test general operation using a list implementation.
20 type List struct {
24 func (list *List) Init() {
25 list.head = nil
28 func (list *List) Insert(i Item) {
31 item.next = list.head
32 list.head = item
35 func (list *List) Print() string
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/
UefiIfrDefault.h 18 #define UEFI_IFR_BUFFER_STORAGE_NODE_FROM_LIST(a) CR(a, UEFI_IFR_BUFFER_STORAGE_NODE, List, UEFI_IFR_BUFFER_STORAGE_NODE_SIGNATURE)
21 LIST_ENTRY List;
37 They are inserted to the link list.
40 @param UefiDefaults The head of link list for the output.
55 @param ListHead The link list of UEFI_IFR_BUFFER_STORAGE_NODE
78 Free up all buffer allocated for the link list of UEFI_IFR_BUFFER_STORAGE_NODE.
80 @param ListHead The link list of UEFI_IFR_BUFFER_STORAGE_NODE
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaFloppyDxe/
IsaFloppy.c 186 LIST_ENTRY *List;
261 // Maintain the list of floppy disk controllers
264 List = mControllerHead.ForwardLink;
265 while (List != &mControllerHead) {
266 FdcDev->ControllerState = FLOPPY_CONTROLLER_FROM_LIST_ENTRY (List);
272 List = List->ForwardLink;
498 // Free the controller list if needed
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiHandleParsingLib/
UefiHandleParsingLib.h 162 HANDLE_LIST List;
  /external/clang/test/PCH/
pragma-loop.cpp 29 inline void run1(int *List, int Length) {
35 List[i] = i;
40 inline void run2(int *List, int Length) {
47 List[i] = i;
52 inline void run3(int *List, int Length) {
59 List[i] = i;
64 inline void run4(int *List, int Length) {
68 List[i] = i;
73 inline void run5(int *List, int Length) {
77 List[i] = i
    [all...]
  /external/libcxx/test/std/containers/sequences/list/list.ops/
remove.pass.cpp 10 // <list>
14 #include <list>
40 std::list<int> c(a1, a1 + 4);
42 assert(c == std::list<int>(a2, a2 + 3));
47 std::list<int> c(a1, a1 + 7);
49 assert(c == std::list<int>(a2, a2 + 5));
54 std::list<S> c;
58 std::list<S>::const_iterator it = c.begin();
67 typedef std::list<int, Alloc> List;
    [all...]
  /external/llvm/include/llvm/ADT/
ilist_node.h 1 //==-- llvm/ADT/ilist_node.h - Intrusive Linked List Helper ------*- C++ -*-==//
71 /// An ilist node that can access its parent list.
74 /// \c ParentTy to have \a getSublistAccess() to get a reference to the list.
93 /// \brief Get the previous node, or \c nullptr for the list head.
96 // (and would need the type of the list).
97 const auto &List =
99 return List.getPrevNode(*static_cast<NodeTy *>(this));
101 /// \brief Get the previous node, or \c nullptr for the list head.
106 /// \brief Get the next node, or \c nullptr for the list tail.
109 // (and would need the type of the list)
    [all...]
  /external/llvm/lib/IR/
ModuleSummaryIndex.cpp 27 GlobalValueSummaryList &List = OtherGlobalValSummaryLists.second;
29 // Assert that the value summary list only has one entry, since we shouldn't
31 assert(List.size() == 1);
32 std::unique_ptr<GlobalValueSummary> Summary = std::move(List.front());
49 // Add new value summary to existing list. There may be duplicates when
59 // entry per value entry list.
68 // Collect for the given module the list of function it defines
87 // Collect for each module the list of function it defines (GUID -> Summary).
  /external/v8/src/
list.h 19 // The list is a template for very light-weight lists. We are not
24 // The list is parameterized by the type of its elements (T) and by an
30 // class AllocationPolicy = FreeStoreAllocationPolicy> class List;
32 class List {
34 explicit List(AllocationPolicy allocator = AllocationPolicy()) {
37 INLINE(explicit List(int capacity,
41 INLINE(~List()) { DeleteData(data_); }
43 // Deallocates memory used by the list and leaves the list in a consistent
64 // not safe to use after operations that can change the list'
    [all...]
  /frameworks/rs/
rsList.h 14 class List {
30 List() : last(nullptr), first(&firstBuffer.data.typed),
38 List(InputIterator first, InputIterator last) : List() {
44 ~List() {
67 friend class List;
83 return p == other.p && buffer == other.buffer && list == other.list;
87 return p != other.p || buffer != other.buffer || list != other.list;
102 const List* list; member in class:android::renderscript::List::iterator
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/
BBSsupport.c 62 LIST_ENTRY List;
87 InitializeListHead (&List);
88 BootOption = BdsLibVariableToOption (&List, OptionName);
188 LIST_ENTRY List;
200 InitializeListHead (&List);
201 BootOption = BdsLibVariableToOption (&List, OptionName);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/ArpDxe/
ArpDriver.c 268 Instance = NET_LIST_USER_STRUCT_S (Entry, ARP_INSTANCE_DATA, List, ARP_INSTANCE_DATA_SIGNATURE);
479 LIST_ENTRY *List;
511 List = &ArpService->ChildrenList;
513 List,
636 // Insert the instance into children list managed by the arp service context data.
638 InsertTailList (&ArpService->ChildrenList, &Instance->List);
779 RemoveEntryList (&Instance->List);
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
Malloc.c 56 LIST_ENTRY List;
62 // List of memory allocated by malloc/calloc/etc.
113 // Add this node to the list
  /external/chromium-trace/catapult/telemetry/telemetry/
benchmark_runner.py 54 the |benchmarks| list.
57 benchmarks: the list of benchmarks to be printed (in the same order of the
58 list).
94 'Pass --browser to list benchmarks for another browser.\n')
125 class List(command_line.OptparseCommand):
152 # Set at least log info level for List command.
303 """Returns a list of all enabled benchmarks in a JSON format expected by
390 all_commands = [Help, List, Run] + extra_commands

Completed in 762 milliseconds

1 2 3 4 5 6 7 8 91011>>