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

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/
aligned_union.pass.cpp 22 typedef std::aligned_union<10, char >::type T1;
24 static_assert(std::is_same<std::aligned_union_t<10, char>, T1>::value, "" );
26 static_assert(std::alignment_of<T1>::value == 1, "");
27 static_assert(sizeof(T1) == 10, "");
30 typedef std::aligned_union<10, short >::type T1;
32 static_assert(std::is_same<std::aligned_union_t<10, short>, T1>::value, "" );
34 static_assert(std::alignment_of<T1>::value == 2, "");
35 static_assert(sizeof(T1) == 10, "");
38 typedef std::aligned_union<10, int >::type T1;
40 static_assert(std::is_same<std::aligned_union_t<10, int>, T1>::value, "" )
    [all...]
aligned_storage.pass.cpp 21 typedef std::aligned_storage<10, 1 >::type T1;
23 static_assert(std::is_same<std::aligned_storage_t<10, 1>, T1>::value, "" );
25 static_assert(std::alignment_of<T1>::value == 1, "");
26 static_assert(sizeof(T1) == 10, "");
29 typedef std::aligned_storage<10, 2 >::type T1;
31 static_assert(std::is_same<std::aligned_storage_t<10, 2>, T1>::value, "" );
33 static_assert(std::alignment_of<T1>::value == 2, "");
34 static_assert(sizeof(T1) == 10, "");
37 typedef std::aligned_storage<10, 4 >::type T1;
39 static_assert(std::is_same<std::aligned_storage_t<10, 4>, T1>::value, "" )
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.trans/meta.trans.other/
aligned_storage.pass.cpp 19 typedef std::aligned_storage<10, 1 >::type T1;
21 static_assert(std::is_same<std::aligned_storage_t<10, 1>, T1>::value, "" );
23 static_assert(std::alignment_of<T1>::value == 1, "");
24 static_assert(sizeof(T1) == 10, "");
27 typedef std::aligned_storage<10, 2 >::type T1;
29 static_assert(std::is_same<std::aligned_storage_t<10, 2>, T1>::value, "" );
31 static_assert(std::alignment_of<T1>::value == 2, "");
32 static_assert(sizeof(T1) == 10, "");
35 typedef std::aligned_storage<10, 4 >::type T1;
37 static_assert(std::is_same<std::aligned_storage_t<10, 4>, T1>::value, "" )
    [all...]
aligned_union.pass.cpp 20 typedef std::aligned_union<10, char >::type T1;
22 static_assert(std::is_same<std::aligned_union_t<10, char>, T1>::value, "" );
24 static_assert(std::alignment_of<T1>::value == 1, "");
25 static_assert(sizeof(T1) == 10, "");
28 typedef std::aligned_union<10, short >::type T1;
30 static_assert(std::is_same<std::aligned_union_t<10, short>, T1>::value, "" );
32 static_assert(std::alignment_of<T1>::value == 2, "");
33 static_assert(sizeof(T1) == 10, "");
36 typedef std::aligned_union<10, int >::type T1;
38 static_assert(std::is_same<std::aligned_union_t<10, int>, T1>::value, "" )
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/meta/meta.trans/meta.trans.other/
aligned_union.pass.cpp 20 typedef std::aligned_union<10, char >::type T1;
22 static_assert(std::is_same<std::aligned_union_t<10, char>, T1>::value, "" );
24 static_assert(std::alignment_of<T1>::value == 1, "");
25 static_assert(sizeof(T1) == 10, "");
28 typedef std::aligned_union<10, short >::type T1;
30 static_assert(std::is_same<std::aligned_union_t<10, short>, T1>::value, "" );
32 static_assert(std::alignment_of<T1>::value == 2, "");
33 static_assert(sizeof(T1) == 10, "");
36 typedef std::aligned_union<10, int >::type T1;
38 static_assert(std::is_same<std::aligned_union_t<10, int>, T1>::value, "" )
    [all...]
aligned_storage.pass.cpp 21 typedef std::aligned_storage<10, 1 >::type T1;
23 static_assert(std::is_same<std::aligned_storage_t<10, 1>, T1>::value, "" );
25 static_assert(std::alignment_of<T1>::value == 1, "");
26 static_assert(sizeof(T1) == 10, "");
29 typedef std::aligned_storage<10, 2 >::type T1;
31 static_assert(std::is_same<std::aligned_storage_t<10, 2>, T1>::value, "" );
33 static_assert(std::alignment_of<T1>::value == 2, "");
34 static_assert(sizeof(T1) == 10, "");
37 typedef std::aligned_storage<10, 4 >::type T1;
39 static_assert(std::is_same<std::aligned_storage_t<10, 4>, T1>::value, "" )
    [all...]
  /external/clang/test/CodeGen/
struct-passing.c 8 typedef struct { int a[16]; } T1;
12 T1 __attribute__((const)) f2(void);
13 T1 __attribute__((pure)) f3(void);
14 void __attribute__((const)) f4(T1 a);
15 void __attribute__((pure)) f5(T1 a);
  /external/clang/test/Sema/
PR2919-builtin-types-compat-strips-crv.c 4 typedef const struct foo T1;
7 const T1) ? 1 : -1];
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.assign/
const_pair.pass.cpp 27 typedef std::tuple<long long, short> T1;
29 T1 t1; local
30 t1 = t0;
31 assert(std::get<0>(t1) == 2);
32 assert(std::get<1>(t1) == short('a'));
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
alloc_const_pair.pass.cpp 31 typedef std::tuple<long long, double> T1;
33 T1 t1(std::allocator_arg, A1<int>(5), t0);
34 assert(std::get<0>(t1) == 2);
35 assert(std::get<1>(t1) == 3);
39 typedef std::tuple<alloc_first, double> T1;
42 T1 t1(std::allocator_arg, A1<int>(5), t0);
44 assert(std::get<0>(t1) == 2);
45 assert(std::get<1>(t1) == 3)
    [all...]
const_pair.pass.cpp 28 typedef std::tuple<long long, short> T1;
30 T1 t1 = t0; local
31 assert(std::get<0>(t1) == 2);
32 assert(std::get<1>(t1) == short('a'));
37 typedef std::tuple<long long, short> T1;
39 constexpr T1 t1 = p0; local
40 static_assert(std::get<0>(t1) == std::get<0>(p0), "");
41 static_assert(std::get<1>(t1) == std::get<1>(p0), "")
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug260.go 17 type T1 struct {
30 var b1 [10]T1
bug496.go 15 type T1 int
17 func (t T1) F() {
bug443.go 12 type T1 struct { F *T2 }
13 type T2 T1
  /prebuilts/go/linux-x86/test/fixedbugs/
bug260.go 17 type T1 struct {
30 var b1 [10]T1
bug496.go 15 type T1 int
17 func (t T1) F() {
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.assign/
const_pair.pass.cpp 25 typedef std::tuple<int, short> T1;
27 T1 t1; local
28 t1 = t0;
29 assert(std::get<0>(t1) == 2);
30 assert(std::get<1>(t1) == short('a'));
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/
alloc_const_pair.pass.cpp 29 typedef std::tuple<int, double> T1;
31 T1 t1(std::allocator_arg, A1<int>(5), t0);
32 assert(std::get<0>(t1) == 2);
33 assert(std::get<1>(t1) == 3);
37 typedef std::tuple<alloc_first, double> T1;
40 T1 t1(std::allocator_arg, A1<int>(5), t0);
42 assert(std::get<0>(t1) == 2);
43 assert(std::get<1>(t1) == 3)
    [all...]
alloc_convert_copy.pass.cpp 28 typedef std::tuple<int> T1;
30 T1 t1(std::allocator_arg, A1<int>(), t0);
31 assert(std::get<0>(t1) == 2);
35 typedef std::tuple<alloc_first> T1;
38 T1 t1(std::allocator_arg, A1<int>(5), t0);
40 assert(std::get<0>(t1) == 2);
44 typedef std::tuple<alloc_first, alloc_last> T1;
48 T1 t1(std::allocator_arg, A1<int>(5), t0)
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.assign/
const_pair.pass.cpp 27 typedef std::tuple<int, short> T1;
29 T1 t1; local
30 t1 = t0;
31 assert(std::get<0>(t1) == 2);
32 assert(std::get<1>(t1) == short('a'));
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
alloc_const_pair.pass.cpp 31 typedef std::tuple<int, double> T1;
33 T1 t1(std::allocator_arg, A1<int>(5), t0);
34 assert(std::get<0>(t1) == 2);
35 assert(std::get<1>(t1) == 3);
39 typedef std::tuple<alloc_first, double> T1;
42 T1 t1(std::allocator_arg, A1<int>(5), t0);
44 assert(std::get<0>(t1) == 2);
45 assert(std::get<1>(t1) == 3)
    [all...]
  /external/clang/test/SemaCXX/
PR10243.cpp 10 struct T1 {
12 T1(const T1&) = default;
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.rel/
eq.pass.cpp 29 typedef std::tuple<> T1;
31 const T1 t1; local
33 assert(t1 == t2);
34 assert(!(t1 != t2));
37 typedef std::tuple<int> T1;
39 const T1 t1(1);
41 assert(!(t1 == t2));
42 assert(t1 != t2)
    [all...]
lt.pass.cpp 41 typedef std::tuple<> T1;
43 const T1 t1; local
45 assert(!(t1 < t2));
46 assert( (t1 <= t2));
47 assert(!(t1 > t2));
48 assert( (t1 >= t2));
51 typedef std::tuple<long> T1;
53 const T1 t1(1)
    [all...]
  /prebuilts/go/darwin-x86/test/
escape3.go 21 type T1 struct {
29 func check1(pass int) T1 {
30 v := []T1{{X: f(), Z: f()}}

Completed in 1244 milliseconds

1 2 3 4 5 6 7 8 91011>>