Home | History | Annotate | Download | only in meta.trans.other

Lines Matching refs:T1

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, "" );
40 static_assert(std::alignment_of<T1>::value == 4, "");
41 static_assert(sizeof(T1) == 12, "");
44 typedef std::aligned_union<10, double >::type T1;
46 static_assert(std::is_same<std::aligned_union_t<10, double>, T1>::value, "" );
48 static_assert(std::alignment_of<T1>::value == 8, "");
49 static_assert(sizeof(T1) == 16, "");
52 typedef std::aligned_union<10, short, char >::type T1;
54 static_assert(std::is_same<std::aligned_union_t<10, short, char>, T1>::value, "" );
56 static_assert(std::alignment_of<T1>::value == 2, "");
57 static_assert(sizeof(T1) == 10, "");
60 typedef std::aligned_union<10, char, short >::type T1;
62 static_assert(std::is_same<std::aligned_union_t<10, char, short>, T1>::value, "" );
64 static_assert(std::alignment_of<T1>::value == 2, "");
65 static_assert(sizeof(T1) == 10, "");
68 typedef std::aligned_union<2, int, char, short >::type T1;
70 static_assert(std::is_same<std::aligned_union_t<2, int, char, short>, T1>::value, "" );
72 static_assert(std::alignment_of<T1>::value == 4, "");
73 static_assert(sizeof(T1) == 4, "");
76 typedef std::aligned_union<2, char, int, short >::type T1;
78 static_assert(std::is_same<std::aligned_union_t<2, char, int, short >, T1>::value, "" );
80 static_assert(std::alignment_of<T1>::value == 4, "");
81 static_assert(sizeof(T1) == 4, "");
84 typedef std::aligned_union<2, char, short, int >::type T1;
86 static_assert(std::is_same<std::aligned_union_t<2, char, short, int >, T1>::value, "" );
88 static_assert(std::alignment_of<T1>::value == 4, "");
89 static_assert(sizeof(T1) == 4, "");