Home
last modified time | relevance | path

Searched refs:MyList (Results 1 – 21 of 21) sorted by relevance

/external/clang/test/CodeGen/
D2002-07-14-MiscListTests.c60 list *MyList = 0; in DoListStuff() local
61 InsertIntoListTail(&MyList, 100); in DoListStuff()
62 InsertIntoListTail(&MyList, 12); in DoListStuff()
63 InsertIntoListTail(&MyList, 42); in DoListStuff()
64 InsertIntoListTail(&MyList, 1123); in DoListStuff()
65 InsertIntoListTail(&MyList, 1213); in DoListStuff()
67 if (FindData(MyList, 75)) foundIt(); in DoListStuff()
68 if (FindData(MyList, 42)) foundIt(); in DoListStuff()
69 if (FindData(MyList, 700)) foundIt(); in DoListStuff()
/external/clang/test/Rewriter/
Drewrite-foreach-3.m5 @interface MyList interface
8 @implementation MyList implementation
15 @interface MyList (BasicTest) interface in BasicTest
20 @implementation MyList (BasicTest) implementation in BasicTest
22 MyList * el;
25 for (MyList * el1 in self)
Drewrite-foreach-4.m3 @interface MyList interface
7 @implementation MyList implementation
15 @interface MyList (BasicTest) interface in BasicTest
20 @implementation MyList (BasicTest) implementation in BasicTest
22 MyList * el;
Drewrite-foreach-5.m7 @interface MyList interface
11 @implementation MyList implementation
19 @interface MyList (BasicTest) interface in BasicTest
24 @implementation MyList (BasicTest) implementation in BasicTest
26 MyList * el;
Drewrite-foreach-2.m5 @interface MyList interface
8 @implementation MyList implementation
15 @interface MyList (BasicTest) interface in BasicTest
22 @implementation MyList (BasicTest) implementation in BasicTest
Drewrite-foreach-1.m5 @interface MyList interface
8 @implementation MyList implementation
15 @interface MyList (BasicTest) interface in BasicTest
20 @implementation MyList (BasicTest) implementation in BasicTest
/external/clang/test/Parser/
Dobjc-forcollection-1.m11 @interface MyList interface
14 @implementation MyList implementation
21 @interface MyList (BasicTest) interface in BasicTest
25 @implementation MyList (BasicTest) implementation in BasicTest
30 for (MyList *elem in self)
35 MyList<P> *p;
Dobjc-forcollection-neg-2.m11 @interface MyList interface
14 @implementation MyList implementation
21 @interface MyList (BasicTest) interface in BasicTest
25 @implementation MyList (BasicTest) implementation in BasicTest
32 MyList<P> ***p;
33 … for (p in self) // expected-error {{selector element type 'MyList<P> ***' is not a valid object}}
Dobjc-foreach-syntax.m4 @implementation MyList // expected-warning {{cannot find interface declaration for 'MyList'}} implementation
14 @implementation MyList (BasicTest) implementation in BasicTest
16 MyList * el;
Dobjc-forcollection-neg.m10 @interface MyList interface
13 @implementation MyList implementation
20 @interface MyList (BasicTest) interface in BasicTest
24 @implementation MyList (BasicTest) implementation in BasicTest
/external/swiftshader/third_party/LLVM/test/Feature/
Drecursivetype.ll28 ; list *MyList = 0;
29 ; InsertIntoListTail(&MyList, 100);
30 ; InsertIntoListTail(&MyList, 12);
31 ; InsertIntoListTail(&MyList, 42);
32 ; InsertIntoListTail(&MyList, 1123);
33 ; InsertIntoListTail(&MyList, 1213);
35 ; if (FindData(MyList, 75)) foundIt();
36 ; if (FindData(MyList, 42)) foundIt();
37 ; if (FindData(MyList, 700)) foundIt();
/external/llvm/test/Feature/
Drecursivetype.ll28 ; list *MyList = 0;
29 ; InsertIntoListTail(&MyList, 100);
30 ; InsertIntoListTail(&MyList, 12);
31 ; InsertIntoListTail(&MyList, 42);
32 ; InsertIntoListTail(&MyList, 1123);
33 ; InsertIntoListTail(&MyList, 1213);
35 ; if (FindData(MyList, 75)) foundIt();
36 ; if (FindData(MyList, 42)) foundIt();
37 ; if (FindData(MyList, 700)) foundIt();
/external/swiftshader/third_party/llvm-7.0/llvm/test/Feature/
Drecursivetype.ll28 ; list *MyList = 0;
29 ; InsertIntoListTail(&MyList, 100);
30 ; InsertIntoListTail(&MyList, 12);
31 ; InsertIntoListTail(&MyList, 42);
32 ; InsertIntoListTail(&MyList, 1123);
33 ; InsertIntoListTail(&MyList, 1213);
35 ; if (FindData(MyList, 75)) foundIt();
36 ; if (FindData(MyList, 42)) foundIt();
37 ; if (FindData(MyList, 700)) foundIt();
/external/python/cpython2/Lib/test/
Dpickletester.py959 y = MyList()
963 self.assertIsInstance(x, MyList)
1040 self.check_recursive_collection_and_inst(MyList)
1257 x = MyList([1, 2, 3])
1306 x = MyList([1, 2, 3])
1666 class MyList(list): class
1675 MyTuple, MyList, MyDict]
1678 class SlotList(MyList):
/external/python/cpython3/Doc/library/
Dreprlib.rst55 >>> class MyList(list):
60 >>> m = MyList('abc')
/external/python/cpython3/Lib/test/
Dpickletester.py1356 y = MyList()
1361 self.assertIsInstance(x, MyList)
1440 self.check_recursive_collection_and_inst(MyList)
1714 x = MyList([1, 2, 3])
1774 x = MyList([1, 2, 3])
2668 class MyList(list): class
2683 MyTuple, MyList, MyDict, MySet, MyFrozenSet]
2686 class SlotList(MyList):
Dtest_typing.py2032 class MyList(typing.List[int]): class
2035 a = MyList()
2036 self.assertIsInstance(a, MyList)
2039 self.assertIsSubclass(MyList, list)
2040 self.assertNotIsSubclass(list, MyList)
Dtest_statistics.py1060 class MyList(list): class
1068 for kind in (list, tuple, iter, MyList, MyTuple, generator):
/external/llvm/docs/
DYamlIO.rst839 struct SequenceTraits<MyList> {
840 static size_t size(IO &io, MyList &list) { ... }
841 static MyListEl &element(IO &io, MyList &list, size_t index) { ... }
847 With the above, if you used MyList as the data type in your native data
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DYamlIO.rst839 struct SequenceTraits<MyList> {
840 static size_t size(IO &io, MyList &list) { ... }
841 static MyListEl &element(IO &io, MyList &list, size_t index) { ... }
847 With the above, if you used MyList as the data type in your native data
/external/python/cpython3/Doc/whatsnew/
D3.2.rst1154 >>> class MyList(list):
1159 >>> m = MyList('abc')