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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Index/Inputs/
cindex-from-source.h 1 typedef int t0; typedef
  /external/clang/test/Sema/
attr-naked.c 5 __attribute__((naked)) int t0(void) { function
attr-returns-twice.c 5 __attribute__((returns_twice)) void t0(void) { function
fpack-struct.c 9 int t0[sizeof(struct s0) == EXPECTED_STRUCT_SIZE ?: -1]; variable
short-enums.c 6 int t0[sizeof(enum x) == 1 ? 1 : -1]; variable
sign-conversion.c 6 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/
copy.pass.cpp 24 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;
move.pass.cpp 25 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/
alloc_copy.pass.cpp 28 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...]
alloc_move.pass.cpp 29 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...]
move.pass.cpp 25 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);
copy.pass.cpp 26 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/
non_member_swap.pass.cpp 26 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(MoveOnly(0), MoveOnly(1), MoveOnly(2))
    [all...]
  /external/libcxx/test/utilities/tuple/tuple.tuple/tuple.swap/
member_swap.pass.cpp 25 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(MoveOnly(0), MoveOnly(1), MoveOnly(2))
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p1.cpp 5 Tuple<> *t0; variable
  /external/clang/test/SemaTemplate/
template-decl-fail.cpp 6 enum t0 { A = T::x }; // expected-error{{enumeration cannot be a template}} \ enum
  /external/libcxx/test/containers/sequences/forwardlist/forwardlist.cons/
assign_copy.pass.cpp 27 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[] = {10, 11, 12, 13} 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...]
assign_range.pass.cpp 27 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[] = {10, 11, 12, 13} local
    [all...]
assign_move.pass.cpp 29 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[] = {10, 11, 12, 13} 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...]
  /cts/suite/cts/deviceTests/opengl/jni/reference/
GLReference.cpp 44 double t0 = GLUtils::currentTimeMillis(); local
49 updates[i] = t1 - t0;
  /external/chromium_org/v8/test/cctest/
test-unscopables-hidden-prototype.cc 27 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/
tsan_thread.cc 17 MainThread t0; local
19 t0.Write1(l);
24 t0.Write1(l);
  /external/libcxx/test/thread/thread.condition/
notify_all_at_thread_exit.pass.cpp 38 Clock::time_point t0 = Clock::now(); local
41 assert(t1-t0 > ms(250));
  /external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.guard/
adopt_lock.pass.cpp 31 time_point t0 = Clock::now(); local
38 ns d = t1 - t0 - ms(250);
mutex.pass.cpp 31 time_point t0 = Clock::now(); local
37 ns d = t1 - t0 - ms(250);

Completed in 317 milliseconds

1 2 3 4 5 6 7 8 91011>>