Searched defs:List (Results 1 - 25 of 116) sorted by relevance

12345

/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/command/
H A Dlist.py5 def List(remote_manifest, local_manifest, display_revisions): function
/external/clang/test/Misc/
H A Dast-print-pragmas-xfail.cpp6 void run1(int *List, int Length) { argument
18 List[i] = i;
H A Dast-print-pragmas.cpp9 void test(int *List, int Length) { argument
15 List[i] = i * 2;
26 List[i] = i * 2;
37 List[i] = i * 2;
/external/deqp/executor/
H A DxeTestCaseResult.cpp59 List::List (void) function in class:xe::ri::List
63 List::~List (void)
/external/clang/test/CodeGen/
H A Ddisable-tail-calls.c3 typedef struct List { struct
4 struct List *next;
6 } List; typedef in typeref:struct:List
8 // CHECK-LABEL: define %struct.List* @find
9 List *find(List *head, int data) {
14 // CHECK: call %struct.List* @find
H A Dpragma-loop.cpp4 void while_test(int *List, int Length) { argument
14 List[i] = i * 2;
20 void do_test(int *List, int Length) { argument
26 List[i] = i * 2;
32 void for_test(int *List, int Length) { argument
38 List[i] = i * 2;
45 double List[100]; local
48 for (int i : List) {
50 List[i] = i;
55 void disable_test(int *List, in argument
68 for_define_test(int *List, int Length, int Value) argument
79 for_template_test(A *List, int Length, A Value) argument
90 for_template_define_test(A *List, int Length, A Value) argument
104 template_test(double *List, int Length) argument
[all...]
H A Dtypes.c25 struct List { struct
30 struct List returned;
33 void test3(struct List a) {
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocList.h20 SmallVector<DebugLocEntry, 4> List; member in struct:llvm::DebugLocList
/external/clang/test/Parser/
H A Dpragma-loop.cpp6 void test(int *List, int Length) { argument
13 List[i] = i;
20 List[i] = i;
27 List[i] = i;
32 List[i] = i;
37 List[i] = i;
43 VList[j] = List[j];
69 List[i] = i;
76 List[i] = i;
83 List[
[all...]
/external/llvm/unittests/Support/
H A DSpecialCaseListTest.cpp20 SpecialCaseList *makeSpecialCaseList(StringRef List, std::string &Error) { argument
21 std::unique_ptr<MemoryBuffer> MB(MemoryBuffer::getMemBuffer(List));
25 SpecialCaseList *makeSpecialCaseList(StringRef List) { argument
27 SpecialCaseList *SCL = makeSpecialCaseList(List, Error);
/external/chromium_org/v8/src/
H A Dlist.h28 // class AllocationPolicy = FreeStoreAllocationPolicy> class List;
30 class List { class in namespace:v8::internal
32 explicit List(AllocationPolicy allocator = AllocationPolicy()) { function in class:v8::internal::List
35 INLINE(explicit List(int capacity,
39 INLINE(~List()) { DeleteData(data_); }
90 void AddAll(const List<T, AllocationPolicy>& other,
169 // List must be full already.
179 DISALLOW_COPY_AND_ASSIGN(List);
184 size_t GetMemoryUsedByList(const List<T, P>& list) {
195 typedef List<Ma
[all...]
/external/clang/test/CodeGenCXX/
H A Dconstructor-template.cpp22 template <typename T> class List { class
24 List(){ } // List<BinomialNode<int>*>::List() remains undefined. function in class:List
25 ~List() {}
39 List<BinomialNode<T>*> nodes;
/external/chromium_org/extensions/common/manifest_handlers/
H A Dnacl_modules_handler.h18 typedef std::list<NaClModuleInfo> List; typedef in struct:extensions::NaClModuleInfo
20 static const NaClModuleInfo::List* GetNaClModules(
/external/clang/test/PCH/
H A Dpragma-loop.cpp22 inline void run1(int *List, int Length) { argument
28 List[i] = i;
33 inline void run2(int *List, int Length) { argument
39 List[i] = i;
44 inline void run3(int *List, int Length) { argument
50 List[i] = i;
59 int List[100]; local
63 pt.run1(List, 100);
64 pt.run2(List, 100);
65 pt.run3(List, 10
[all...]
/external/llvm/unittests/ADT/
H A DilistTest.cpp29 ilist<Node> List; local
30 List.push_back(Node(1));
31 EXPECT_EQ(1, List.back().Value);
32 EXPECT_EQ(nullptr, List.back().getPrevNode());
33 EXPECT_EQ(nullptr, List.back().getNextNode());
35 List.push_back(Node(2));
36 EXPECT_EQ(2, List.back().Value);
37 EXPECT_EQ(2, List.front().getNextNode()->Value);
38 EXPECT_EQ(1, List.back().getPrevNode()->Value);
40 const ilist<Node> &ConstList = List;
47 ilist<Node> List; local
59 List.splice(std::next(List.begin()), List, List.begin()); local
67 ilist<Node> List; local
[all...]
/external/chromium_org/chromeos/dbus/
H A Dfake_modem_messaging_client.cc45 void FakeModemMessagingClient::List(const std::string& service_name, function in class:chromeos::FakeModemMessagingClient
49 // Calling List with |service_name| equal to "AddSMS" allows unit
/external/chromium_org/content/public/browser/
H A Ddevtools_agent_host.h66 typedef std::vector<scoped_refptr<DevToolsAgentHost> > List; typedef in class:content::DevToolsAgentHost
69 static List GetOrCreateAll();
/external/chromium_org/sandbox/linux/bpf_dsl/
H A Dcons.h18 // List provides an abstraction for referencing a list of zero or
20 typedef scoped_refptr<const Cons<T> > List; typedef in class:sandbox::Cons
26 List tail() const { return tail_; }
28 // Construct a new List using |head| and |tail|.
29 static List Make(const T& head, List tail) {
34 Cons(const T& head, List tail) : head_(head), tail_(tail) {}
38 List tail_;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DFormAssociatedElement.h93 typedef WillBeHeapVector<RawPtrWillBeMember<FormAssociatedElement> > List; typedef in class:blink::FormAssociatedElement
/external/clang/test/Modules/Inputs/
H A Dtemplates-left.h7 template<typename T> class List;
8 template<> class List<bool> { class
22 constexpr unsigned List<int>::*size_left = &List<int>::size;
23 List<int> list_left = { 0, 8 };
24 typedef List<int> ListInt_left;
38 List<double> ld;
H A Dtemplates-right.h8 template<typename T> class List;
9 template<> class List<bool> { class
21 constexpr unsigned List<int>::*size_right = &List<int>::size;
22 List<int> list_right = { 0, 12 };
23 typedef List<int> ListInt_right;
36 List<double> ld;
H A Dtemplates-top.h3 template<typename T> class List { class
12 extern List<double> *instantiateListDoubleDeclaration;
/external/chromium_org/net/disk_cache/blockfile/
H A Deviction_v3.h20 typedef int List; typedef in namespace:disk_cache::Rankings
51 bool EvictEntry(CacheRankingsBlock* node, bool empty, Rankings::List list);
/external/chromium_org/tools/json_schema_compiler/test/
H A Dtest_util.cc28 scoped_ptr<base::ListValue> List(base::Value* a) { function in namespace:json_schema_compiler::test_util
33 scoped_ptr<base::ListValue> List(base::Value* a, base::Value* b) { function in namespace:json_schema_compiler::test_util
34 scoped_ptr<base::ListValue> list = List(a);
38 scoped_ptr<base::ListValue> List(base::Value* a, function in namespace:json_schema_compiler::test_util
41 scoped_ptr<base::ListValue> list = List(a, b);
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DTestEnumMapGenerator.java19 import java.util.List;
79 List<Entry<AnEnum, String>> insertionOrder) {
78 order( List<Entry<AnEnum, String>> insertionOrder) argument

Completed in 501 milliseconds

12345