HomeSort by relevance Sort by last modified time
    Searched defs:T1 (Results 1 - 25 of 295) 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.fail.cpp 22 typedef std::aligned_union<10, A>::type T1;
aligned_union.pass.cpp 23 typedef std::aligned_union<10, char >::type T1;
25 static_assert(std::is_same<std::aligned_union_t<10, char>, T1>::value, "" );
27 static_assert(std::alignment_of<T1>::value == 1, "");
28 static_assert(sizeof(T1) == 10, "");
31 typedef std::aligned_union<10, short >::type T1;
33 static_assert(std::is_same<std::aligned_union_t<10, short>, T1>::value, "" );
35 static_assert(std::alignment_of<T1>::value == 2, "");
36 static_assert(sizeof(T1) == 10, "");
39 typedef std::aligned_union<10, int >::type T1;
41 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/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/meta/meta.trans/meta.trans.other/
aligned_union.pass.cpp 23 typedef std::aligned_union<10, char >::type T1;
25 static_assert(std::is_same<std::aligned_union_t<10, char>, T1>::value, "" );
27 static_assert(std::alignment_of<T1>::value == 1, "");
28 static_assert(sizeof(T1) == 10, "");
31 typedef std::aligned_union<10, short >::type T1;
33 static_assert(std::is_same<std::aligned_union_t<10, short>, T1>::value, "" );
35 static_assert(std::alignment_of<T1>::value == 2, "");
36 static_assert(sizeof(T1) == 10, "");
39 typedef std::aligned_union<10, int >::type T1;
41 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...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
armv8-a+pan.s 11 T1:
armv8-a+rdma.s 38 T1:
armv8_2-a.s 7 T1: .thumb
  /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() {
  /prebuilts/go/darwin-x86/test/syntax/
semi6.go 9 type T1 // ERROR "unexpected newline in type declaration"
  /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/go/linux-x86/test/syntax/
semi6.go 9 type T1 // ERROR "unexpected newline in type declaration"
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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'));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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...]
  /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 449 milliseconds

1 2 3 4 5 6 7 8 91011>>