Searched defs:t0 (Results 1 - 25 of 318) sorted by relevance

1234567891011>>

/external/clang/test/Index/Inputs/
H A Dcindex-from-source.h1 typedef int t0; typedef
/external/clang/test/Sema/
H A Dattr-naked.c5 __attribute__((naked)) int t0(void) { function
H A Dattr-returns-twice.c5 __attribute__((returns_twice)) void t0(void) { function
H A Dfpack-struct.c9 int t0[sizeof(struct s0) == EXPECTED_STRUCT_SIZE ?: -1]; variable
H A Dshort-enums.c6 int t0[sizeof(enum x) == 1 ? 1 : -1]; variable
H A Dsign-conversion.c6 unsigned t0 = x; // expected-warning {{implicit conversion changes signedness}} local
7 unsigned t1 = (t0 == 5 ? x : 0); // expected-warning {{operand of ? changes signedness}}
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.assign/
H A Dcopy.pass.cpp24 T t0; local
26 t = t0;
30 T t0(2);
32 t = t0;
37 T t0(2, 'a');
39 t = t0;
45 const T t0(2, 'a', "some text");
47 t = t0;
H A Dmove.pass.cpp25 T t0; local
27 t = std::move(t0);
31 T t0(MoveOnly(0));
33 t = std::move(t0);
38 T t0(MoveOnly(0), MoveOnly(1));
40 t = std::move(t0);
46 T t0(MoveOnly(0), MoveOnly(1), MoveOnly(2));
48 t = std::move(t0);
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/
H A Dalloc_copy.pass.cpp28 T t0; local
29 T t(std::allocator_arg, A1<int>(), t0);
33 T t0(2);
34 T t(std::allocator_arg, A1<int>(), t0);
39 T t0(2);
41 T t(std::allocator_arg, A1<int>(5), t0);
47 T t0(2);
49 T t(std::allocator_arg, A1<int>(5), t0);
55 T t0(2, 3);
58 T t(std::allocator_arg, A1<int>(5), t0);
[all...]
H A Dalloc_move.pass.cpp29 T t0; local
30 T t(std::allocator_arg, A1<int>(), std::move(t0));
34 T t0(MoveOnly(0));
35 T t(std::allocator_arg, A1<int>(), std::move(t0));
40 T t0(1);
42 T t(std::allocator_arg, A1<int>(5), std::move(t0));
48 T t0(1);
50 T t(std::allocator_arg, A1<int>(5), std::move(t0));
56 T t0(0 ,1);
58 T t(std::allocator_arg, A1<int>(5), std::move(t0));
[all...]
H A Dmove.pass.cpp25 T t0; local
26 T t = std::move(t0);
30 T t0(MoveOnly(0));
31 T t = std::move(t0);
36 T t0(MoveOnly(0), MoveOnly(1));
37 T t = std::move(t0);
43 T t0(MoveOnly(0), MoveOnly(1), MoveOnly(2));
44 T t = std::move(t0);
H A Dcopy.pass.cpp26 T t0; local
27 T t = t0;
31 T t0(2);
32 T t = t0;
37 T t0(2, 'a');
38 T t = t0;
44 const T t0(2, 'a', "some text");
45 T t = t0;
53 constexpr T t0(2);
54 constexpr T t = t0;
59 constexpr T t0; local
[all...]
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.special/
H A Dnon_member_swap.pass.cpp26 T t0; local
28 swap(t0, t1);
32 T t0(MoveOnly(0));
34 swap(t0, t1);
35 assert(std::get<0>(t0) == 1);
40 T t0(MoveOnly(0), MoveOnly(1));
42 swap(t0, t1);
43 assert(std::get<0>(t0) == 2);
44 assert(std::get<1>(t0) == 3);
50 T t0(MoveOnl
[all...]
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.swap/
H A Dmember_swap.pass.cpp25 T t0; local
27 t0.swap(t1);
31 T t0(MoveOnly(0));
33 t0.swap(t1);
34 assert(std::get<0>(t0) == 1);
39 T t0(MoveOnly(0), MoveOnly(1));
41 t0.swap(t1);
42 assert(std::get<0>(t0) == 2);
43 assert(std::get<1>(t0) == 3);
49 T t0(MoveOnl
[all...]
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dp1.cpp5 Tuple<> *t0; variable
/external/clang/test/SemaTemplate/
H A Dtemplate-decl-fail.cpp6 enum t0 { A = T::x }; // expected-error{{enumeration cannot be a template}} \ enum
/external/libcxx/test/containers/sequences/forwardlist/forwardlist.cons/
H A Dassign_copy.pass.cpp27 const T t0[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
29 C c0(std::begin(t0), std::end(t0), A(10));
39 const T t0[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
41 C c0(std::begin(t0), std::end(t0), A(10));
51 const T t0[] = {10, 11, 12, 13}; local
53 C c0(std::begin(t0), std::end(t0), A(10));
63 const T t0[] local
76 const T t0[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
88 const T t0[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
100 const T t0[] = {10, 11, 12, 13}; local
112 const T t0[] = {10, 11, 12, 13}; local
125 const T t0[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
137 const T t0[] = {10, 11, 12, 13}; local
[all...]
H A Dassign_range.pass.cpp27 const T t0[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
31 c.assign(I(std::begin(t0)), I(std::end(t0)));
40 const T t0[] = {10, 11, 12, 13}; local
44 c.assign(I(std::begin(t0)), I(std::end(t0)));
54 const T t0[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
58 c.assign(I(std::begin(t0)), I(std::end(t0)));
67 const T t0[] local
[all...]
H A Dassign_move.pass.cpp29 T t0[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
32 C c0(I(std::begin(t0)), I(std::end(t0)), A(10));
46 T t0[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
49 C c0(I(std::begin(t0)), I(std::end(t0)), A(10));
63 T t0[] = {10, 11, 12, 13}; local
66 C c0(I(std::begin(t0)), I(std::end(t0)), A(10));
80 T t0[] local
98 T t0[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
115 T t0[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
132 T t0[] = {10, 11, 12, 13}; local
149 T t0[] = {10, 11, 12, 13}; local
167 T t0[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
184 T t0[] = {10, 11, 12, 13}; local
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-unscopables-hidden-prototype.cc27 v8::Local<v8::FunctionTemplate> t0 = v8::FunctionTemplate::New(isolate); local
32 v8::Local<v8::Object> object = t0->GetFunction()->NewInstance();
/external/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_thread.cc17 MainThread t0; local
19 t0.Write1(l);
24 t0.Write1(l);
/external/libcxx/test/thread/thread.condition/
H A Dnotify_all_at_thread_exit.pass.cpp38 Clock::time_point t0 = Clock::now(); local
41 assert(t1-t0 > ms(250));
/external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.guard/
H A Dadopt_lock.pass.cpp31 time_point t0 = Clock::now(); local
38 ns d = t1 - t0 - ms(250);
H A Dmutex.pass.cpp31 time_point t0 = Clock::now(); local
37 ns d = t1 - t0 - ms(250);
/external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/
H A Dmutex.pass.cpp34 time_point t0 = Clock::now(); local
40 ns d = t1 - t0 - ms(250);
46 time_point t0 = Clock::now();
52 ns d = t1 - t0;

Completed in 3670 milliseconds

1234567891011>>