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

Lines Matching defs:T1

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, "" );
43 static_assert(std::alignment_of<T1>::value == 4, "");
44 static_assert(sizeof(T1) == 12, "");
47 typedef std::aligned_union<10, double >::type T1;
49 static_assert(std::is_same<std::aligned_union_t<10, double>, T1>::value, "" );
51 static_assert(std::alignment_of<T1>::value == 8, "");
52 static_assert(sizeof(T1) == 16, "");
55 typedef std::aligned_union<10, short, char >::type T1;
57 static_assert(std::is_same<std::aligned_union_t<10, short, char>, T1>::value, "" );
59 static_assert(std::alignment_of<T1>::value == 2, "");
60 static_assert(sizeof(T1) == 10, "");
63 typedef std::aligned_union<10, char, short >::type T1;
65 static_assert(std::is_same<std::aligned_union_t<10, char, short>, T1>::value, "" );
67 static_assert(std::alignment_of<T1>::value == 2, "");
68 static_assert(sizeof(T1) == 10, "");
71 typedef std::aligned_union<2, int, char, short >::type T1;
73 static_assert(std::is_same<std::aligned_union_t<2, int, char, short>, T1>::value, "" );
75 static_assert(std::alignment_of<T1>::value == 4, "");
76 static_assert(sizeof(T1) == 4, "");
79 typedef std::aligned_union<2, char, int, short >::type T1;
81 static_assert(std::is_same<std::aligned_union_t<2, char, int, short >, T1>::value, "" );
83 static_assert(std::alignment_of<T1>::value == 4, "");
84 static_assert(sizeof(T1) == 4, "");
87 typedef std::aligned_union<2, char, short, int >::type T1;
89 static_assert(std::is_same<std::aligned_union_t<2, char, short, int >, T1>::value, "" );
91 static_assert(std::alignment_of<T1>::value == 4, "");
92 static_assert(sizeof(T1) == 4, "");