Searched defs:T1 (Results 1 - 25 of 130) sorted by relevance

123456

/external/libcxx/test/utilities/meta/meta.trans/meta.trans.other/
H A Daligned_union.pass.cpp20 typedef std::aligned_union<10, char >::type T1; typedef
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; typedef
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; typedef
38 static_assert(std::is_same<std::aligned_union_t<10, int>, T1>
44 typedef std::aligned_union<10, double >::type T1; typedef
52 typedef std::aligned_union<10, short, char >::type T1; typedef
60 typedef std::aligned_union<10, char, short >::type T1; typedef
68 typedef std::aligned_union<2, int, char, short >::type T1; typedef
76 typedef std::aligned_union<2, char, int, short >::type T1; typedef
84 typedef std::aligned_union<2, char, short, int >::type T1; typedef
[all...]
H A Daligned_storage.disabled.cpp19 typedef std::aligned_storage<10, 1 >::type T1; typedef
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; typedef
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; typedef
37 static_assert(std::is_same<std::aligned_storage_t<10, 4>, T1>
43 typedef std::aligned_storage<10, 8 >::type T1; typedef
51 typedef std::aligned_storage<10, 16 >::type T1; typedef
59 typedef std::aligned_storage<10, 32 >::type T1; typedef
67 typedef std::aligned_storage<20, 32 >::type T1; typedef
75 typedef std::aligned_storage<40, 32 >::type T1; typedef
83 typedef std::aligned_storage<12, 16 >::type T1; typedef
91 typedef std::aligned_storage<1>::type T1; typedef
99 typedef std::aligned_storage<2>::type T1; typedef
107 typedef std::aligned_storage<3>::type T1; typedef
115 typedef std::aligned_storage<4>::type T1; typedef
123 typedef std::aligned_storage<5>::type T1; typedef
131 typedef std::aligned_storage<7>::type T1; typedef
139 typedef std::aligned_storage<8>::type T1; typedef
147 typedef std::aligned_storage<9>::type T1; typedef
155 typedef std::aligned_storage<15>::type T1; typedef
169 typedef std::aligned_storage<16>::type T1; typedef
178 typedef std::aligned_storage<17>::type T1; typedef
187 typedef std::aligned_storage<10>::type T1; typedef
[all...]
/external/clang/test/CodeGen/
H A Dstruct-passing.c8 typedef struct { int a[16]; } T1; typedef in typeref:struct:__anon18699
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);
H A D2007-02-04-AddrLValue.c8 } T1; typedef in typeref:struct:__anon18537
16 T1 a[] =
/external/clang/test/Sema/
H A DPR2919-builtin-types-compat-strips-crv.c4 typedef const struct foo T1; typedef in typeref:struct:foo
7 const T1) ? 1 : -1];
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.assign/
H A Dconst_pair.pass.cpp25 typedef std::tuple<int, short> T1; typedef
27 T1 t1;
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/
H A Dalloc_const_pair.pass.cpp29 typedef std::tuple<int, double> T1; typedef
31 T1 t1(std::allocator_arg, A1<int>(5), t0);
37 typedef std::tuple<alloc_first, double> T1; typedef
40 T1 t1(std::allocator_arg, A1<int>(5), t0);
47 typedef std::tuple<alloc_first, alloc_last> T1; typedef
51 T1 t1(std::allocator_arg, A1<int>(5), t0);
H A Dalloc_convert_copy.pass.cpp28 typedef std::tuple<int> T1; typedef
30 T1 t1(std::allocator_arg, A1<int>(), t0);
35 typedef std::tuple<alloc_first> T1; typedef
38 T1 t1(std::allocator_arg, A1<int>(5), t0);
44 typedef std::tuple<alloc_first, alloc_last> T1; typedef
48 T1 t1(std::allocator_arg, A1<int>(5), t0);
56 typedef std::tuple<int, alloc_first, alloc_last> T1; typedef
60 T1 t1(std::allocator_arg, A1<int>(5), t0);
H A Dconst_pair.pass.cpp24 typedef std::tuple<int, short> T1; typedef
26 T1 t1 = t0;
33 typedef std::tuple<int, short> T1; typedef
35 constexpr T1 t1 = p0;
/external/clang/test/SemaCXX/
H A DPR10243.cpp10 struct T1 { struct
12 T1(const T1&) = default;
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.rel/
H A Deq.pass.cpp25 typedef std::tuple<> T1; typedef
27 const T1 t1;
33 typedef std::tuple<int> T1; typedef
35 const T1 t1(1);
41 typedef std::tuple<int> T1; typedef
43 const T1 t1(1);
49 typedef std::tuple<int, double> T1; typedef
51 const T1 t1(1, 2);
57 typedef std::tuple<int, double> T1; typedef
59 const T1 t
65 typedef std::tuple<int, double> T1; typedef
73 typedef std::tuple<int, double> T1; typedef
81 typedef std::tuple<char, int, double> T1; typedef
89 typedef std::tuple<char, int, double> T1; typedef
97 typedef std::tuple<char, int, double> T1; typedef
105 typedef std::tuple<char, int, double> T1; typedef
113 typedef std::tuple<char, int, double> T1; typedef
121 typedef std::tuple<char, int, double> T1; typedef
129 typedef std::tuple<char, int, double> T1; typedef
137 typedef std::tuple<char, int, double> T1; typedef
146 typedef std::tuple<char, int, double> T1; typedef
[all...]
H A Dlt.pass.cpp37 typedef std::tuple<> T1; typedef
39 const T1 t1;
47 typedef std::tuple<char> T1; typedef
49 const T1 t1(1);
57 typedef std::tuple<char> T1; typedef
59 const T1 t1(1);
67 typedef std::tuple<char> T1; typedef
69 const T1 t1(1);
77 typedef std::tuple<char, int> T1; typedef
79 const T1 t
87 typedef std::tuple<char, int> T1; typedef
97 typedef std::tuple<char, int> T1; typedef
107 typedef std::tuple<char, int> T1; typedef
117 typedef std::tuple<char, int> T1; typedef
127 typedef std::tuple<char, int, double> T1; typedef
137 typedef std::tuple<char, int, double> T1; typedef
147 typedef std::tuple<char, int, double> T1; typedef
157 typedef std::tuple<char, int, double> T1; typedef
167 typedef std::tuple<char, int, double> T1; typedef
177 typedef std::tuple<char, int, double> T1; typedef
187 typedef std::tuple<char, int, double> T1; typedef
198 typedef std::tuple<char, int, double> T1; typedef
[all...]
/external/libcxx/test/thread/thread.mutex/thread.lock/
H A Dtypes.pass.cpp25 typedef std::defer_lock_t T1; typedef
29 T1 t1 = std::defer_lock;
/external/libcxx/test/utilities/time/time.point/time.point.comparisons/
H A Dop_equal.pass.cpp30 typedef std::chrono::time_point<Clock, Duration1> T1; typedef
34 T1 t1(Duration1(3));
35 T1 t2(Duration1(3));
40 T1 t1(Duration1(3));
41 T1 t2(Duration1(4));
46 T1 t1(Duration1(3));
52 T1 t1(Duration1(3));
60 constexpr T1 t1(Duration1(3));
61 constexpr T1 t2(Duration1(3));
66 constexpr T1 t
[all...]
H A Dop_less.fail.cpp42 typedef std::chrono::time_point<Clock1, Duration1> T1; typedef
45 T1 t1(Duration1(3));
H A Dop_less.pass.cpp38 typedef std::chrono::time_point<Clock, Duration1> T1; typedef
42 T1 t1(Duration1(3));
43 T1 t2(Duration1(3));
50 T1 t1(Duration1(3));
51 T1 t2(Duration1(4));
58 T1 t1(Duration1(3));
66 T1 t1(Duration1(3));
76 constexpr T1 t1(Duration1(3));
77 constexpr T1 t2(Duration1(3));
84 constexpr T1 t
[all...]
H A Dop_equal.fail.cpp34 typedef std::chrono::time_point<Clock1, Duration1> T1; typedef
37 T1 t1(Duration1(3));
/external/libcxx/test/utilities/time/time.traits/time.traits.specializations/
H A Dtime_point.pass.cpp25 typedef std::chrono::time_point<C, D1> T1; typedef
28 typedef typename std::common_type<T1, T2>::type Tc;
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
H A Dp10.cpp4 typedef int& T1; typedef
10 mutable T1 f3; // expected-error{{'mutable' cannot be applied to references}}
/external/clang/test/CXX/special/class.ctor/
H A Dp1.cpp51 typedef int T1; typedef
53 X3::X3(T1()); // expected-error {{extra qualification on member 'X3'}}
/external/clang/test/CodeGenCXX/
H A D2009-03-17-dbg.cpp3 template <typename T1,typename T2>
4 inline void f(const T1&,const T2&) { } argument
6 template <typename T1,typename T2,void F(const T1&,const T2&)>
H A Dweak-extern-typeinfo.cpp17 class T1 {}; class
19 class C : public T1, public B, public T {
/external/clang/test/Parser/
H A Dcxx-attributes.cpp17 typedef int __attribute__((__aligned__(A))) T1; typedef in namespace:PR17666
18 int check1[__alignof__(T1) == 1 ? 1 : -1];
20 typedef int __attribute__((aligned(int(1)))) T1; typedef in namespace:PR17666
H A Dcxx-default-args.cpp20 template <typename A, typename B> struct T1 { enum {V};}; struct in struct:T
25 void f1(T1<int, int> = T1<int, int>());
26 void f2(T1<int, double> = T1<int, double>(), T2<0, 5> = T2<0, 5>());
27 void f3(int a = T2<0, (T1<int, int>::V > 10) ? 5 : 6>::V, bool b = 4<5 );
29 void f5(bool a = 1 > T2<0, 0>::V, bool b = T1<int,int>::V < 3, int c = 0);
31 void f7(bool a = T1<int, bool>::V < 3);
32 void f8(int = func<0,1<2>(0), int = 1<0, T1<int,int>(int) = 0);
/external/libcxx/test/utilities/time/time.point/time.point.cast/
H A Dtime_point_cast.pass.cpp76 typedef std::chrono::duration<int, std::ratio<3, 5>> T1; typedef
77 test_constexpr<std::chrono::duration<int, std::ratio<2, 3>>, 9, T1, 10> ();

Completed in 447 milliseconds

123456