HomeSort by relevance Sort by last modified time
    Searched defs:t0 (Results 1 - 25 of 530) 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
  /bionic/libc/tzcode/
difftime.c 25 double t1 = time1, t0 = time0; local
26 return t1 - t0;
38 uintmax_t t1 = time1, t0 = time0; local
39 return time0 <= time1 ? t1 - t0 : dminus(t0 - t1);
55 long double t1 = time1, t0 = time0; local
56 return t1 - t0;
  /external/clang/test/Sema/
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/jemalloc/test/include/test/
timer.h 4 nstime_t t0; member in struct:__anon12829
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.assign/
copy.pass.cpp 26 T t0; local
28 t = t0;
32 T t0(2);
34 t = t0;
39 T t0(2, 'a');
41 t = t0;
47 const T t0(2, 'a', "some text");
49 t = t0;
move.pass.cpp 28 T t0; local
30 t = std::move(t0);
34 T t0(MoveOnly(0));
36 t = std::move(t0);
41 T t0(MoveOnly(0), MoveOnly(1));
43 t = std::move(t0);
49 T t0(MoveOnly(0), MoveOnly(1), MoveOnly(2));
51 t = std::move(t0);
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
alloc_copy.pass.cpp 30 T t0; local
31 T t(std::allocator_arg, A1<int>(), t0);
35 T t0(2);
36 T t(std::allocator_arg, A1<int>(), t0);
41 T t0(2);
43 T t(std::allocator_arg, A1<int>(5), t0);
49 T t0(2);
51 T t(std::allocator_arg, A1<int>(5), t0);
57 T t0(2, 3);
60 T t(std::allocator_arg, A1<int>(5), t0);
    [all...]
alloc_move.pass.cpp 31 T t0; local
32 T t(std::allocator_arg, A1<int>(), std::move(t0));
36 T t0(MoveOnly(0));
37 T t(std::allocator_arg, A1<int>(), std::move(t0));
42 T t0(1);
44 T t(std::allocator_arg, A1<int>(5), std::move(t0));
50 T t0(1);
52 T t(std::allocator_arg, A1<int>(5), std::move(t0));
58 T t0(0 ,1);
60 T t(std::allocator_arg, A1<int>(5), std::move(t0));
    [all...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.special/
non_member_swap.pass.cpp 28 T t0; local
30 swap(t0, t1);
34 T t0(MoveOnly(0));
36 swap(t0, t1);
37 assert(std::get<0>(t0) == 1);
42 T t0(MoveOnly(0), MoveOnly(1));
44 swap(t0, t1);
45 assert(std::get<0>(t0) == 2);
46 assert(std::get<1>(t0) == 3);
52 T t0(MoveOnly(0), MoveOnly(1), MoveOnly(2))
    [all...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.swap/
member_swap.pass.cpp 27 T t0; local
29 t0.swap(t1);
33 T t0(MoveOnly(0));
35 t0.swap(t1);
36 assert(std::get<0>(t0) == 1);
41 T t0(MoveOnly(0), MoveOnly(1));
43 t0.swap(t1);
44 assert(std::get<0>(t0) == 2);
45 assert(std::get<1>(t0) == 3);
51 T t0(MoveOnly(0), MoveOnly(1), MoveOnly(2))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/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);
  /ndk/sources/cxx-stl/llvm-libc++/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...]
  /ndk/sources/cxx-stl/llvm-libc++/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...]
  /ndk/sources/cxx-stl/llvm-libc++/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/std/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...]

Completed in 721 milliseconds

1 2 3 4 5 6 7 8 91011>>