Searched defs:T2 (Results 1 - 25 of 102) sorted by relevance

12345

/external/clang/test/CodeCompletion/
H A Ddocumentation.cpp8 class T2 { class
22 T2 t2;
28 // CHECK-CC1: COMPLETION: T2 : T2 : Bbb.
/external/clang/test/Layout/
H A Dms-x86-misalignedarray.cpp7 struct T2 : virtual T0 { }; struct in inherits:T0
8 struct T3 { T2 a[1]; char c; };
14 // CHECK-NEXT: 0 | struct T2 [1] a
22 // CHECK-X64-NEXT: 0 | struct T2 [1] a
/external/clang/test/SemaCXX/
H A DPR10243.cpp15 struct T2 { struct
17 T2& operator=(const T2&) = default;
H A Daccess-base-class.cpp13 namespace T2 { namespace
19 A *a = b; // expected-error {{cannot cast 'T2::B' to its private base class 'T2::A'}}
H A Dtrivial-constructor.cpp7 struct T2 { struct
8 T2();
10 static_assert(!__has_trivial_constructor(T2), "T2 has a user-declared constructor!");
28 static T2 t2;
37 struct T8 : T2 {
39 static_assert(!__has_trivial_constructor(T8), "The base class T2 does not have a trivial constructor!");
H A Dtrivial-destructor.cpp7 struct T2 { struct
8 ~T2();
10 static_assert(!__has_trivial_destructor(T2), "T2 has a user-declared destructor!");
28 static T2 t2;
33 T2 t2;
37 struct T8 : T2 {
39 static_assert(!__has_trivial_destructor(T8), "The base class T2 does not have a trivial destructor!");
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.rel/
H A Deq.pass.cpp26 typedef std::tuple<> T2; typedef
28 const T2 t2;
34 typedef std::tuple<double> T2; typedef
36 const T2 t2(1.1);
42 typedef std::tuple<double> T2; typedef
44 const T2 t2(1);
50 typedef std::tuple<double, char> T2; typedef
52 const T2 t2(1, char(2));
58 typedef std::tuple<double, char> T2; typedef
60 const T2 t
66 typedef std::tuple<double, char> T2; typedef
74 typedef std::tuple<double, char> T2; typedef
82 typedef std::tuple<double, char, int> T2; typedef
90 typedef std::tuple<double, char, int> T2; typedef
98 typedef std::tuple<double, char, int> T2; typedef
106 typedef std::tuple<double, char, int> T2; typedef
114 typedef std::tuple<double, char, int> T2; typedef
122 typedef std::tuple<double, char, int> T2; typedef
130 typedef std::tuple<double, char, int> T2; typedef
138 typedef std::tuple<double, char, int> T2; typedef
147 typedef std::tuple<double, char, int> T2; typedef
[all...]
H A Dlt.pass.cpp38 typedef std::tuple<> T2; typedef
40 const T2 t2;
48 typedef std::tuple<double> T2; typedef
50 const T2 t2(1);
58 typedef std::tuple<double> T2; typedef
60 const T2 t2(0.9);
68 typedef std::tuple<double> T2; typedef
70 const T2 t2(1.1);
78 typedef std::tuple<double, char> T2; typedef
80 const T2 t
88 typedef std::tuple<double, char> T2; typedef
98 typedef std::tuple<double, char> T2; typedef
108 typedef std::tuple<double, char> T2; typedef
118 typedef std::tuple<double, char> T2; typedef
128 typedef std::tuple<double, char, int> T2; typedef
138 typedef std::tuple<double, char, int> T2; typedef
148 typedef std::tuple<double, char, int> T2; typedef
158 typedef std::tuple<double, char, int> T2; typedef
168 typedef std::tuple<double, char, int> T2; typedef
178 typedef std::tuple<double, char, int> T2; typedef
188 typedef std::tuple<double, char, int> T2; typedef
199 typedef std::tuple<double, char, int> T2; typedef
[all...]
/external/libcxx/test/thread/thread.mutex/thread.lock/
H A Dtypes.pass.cpp26 typedef std::try_to_lock_t T2; typedef
30 T2 t2 = std::try_to_lock;
/external/libcxx/test/utilities/time/time.point/time.point.comparisons/
H A Dop_equal.pass.cpp31 typedef std::chrono::time_point<Clock, Duration2> T2; typedef
47 T2 t2(Duration2(3000));
53 T2 t2(Duration2(3001));
73 constexpr T2 t2(Duration2(3000));
79 constexpr T2 t2(Duration2(3001));
H A Dop_less.fail.cpp43 typedef std::chrono::time_point<Clock2, Duration2> T2; typedef
46 T2 t2(Duration2(3000));
H A Dop_less.pass.cpp39 typedef std::chrono::time_point<Clock, Duration2> T2; typedef
59 T2 t2(Duration2(3000));
67 T2 t2(Duration2(3001));
93 constexpr T2 t2(Duration2(3000));
101 constexpr T2 t2(Duration2(3001));
H A Dop_equal.fail.cpp35 typedef std::chrono::time_point<Clock2, Duration2> T2; typedef
38 T2 t2(Duration2(3000));
/external/libcxx/test/utilities/time/time.traits/time.traits.specializations/
H A Dtime_point.pass.cpp26 typedef std::chrono::time_point<C, D2> T2; typedef
28 typedef typename std::common_type<T1, T2>::type Tc;
/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&)>
/external/clang/test/Index/
H A Dcomplete-documentation.cpp8 class T2 { class
33 T2 t2;
42 // CHECK-CC1: ClassDecl:{TypedText T2}{{.*}}(brief comment: Bbb.)
/external/clang/test/Parser/
H A Dcxx-attributes.cpp21 typedef int __attribute__((aligned(int))) T2; // expected-error {{expected '(' for function-style cast}} typedef in namespace:PR17666
H A Dcxx-default-args.cpp21 template <int A, int B> struct T2 { enum {V}; }; struct in struct:T
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);
30 void f6(bool a = T2<0,3>::V < 4, bool b = 4 > T2<0,3>::V);
H A Dcxx0x-member-initializers.cpp32 template <int, int> struct T2 { enum {V};}; struct
35 T2<0,0> b1 = T2<0,0>(), b2 = T2<0,0>(), b3;
/external/clang/test/Modules/Inputs/
H A Dredecl-merge-left.h60 typedef float T2; typedef
H A Dredecl-merge-right.h63 typedef double T2; typedef
/external/chromium_org/third_party/cacheinvalidation/overrides/google/cacheinvalidation/deps/
H A Dcallback.h50 template <class T1, class T2>
52 T1* object, void (T2::*method)()) {
56 template <class T1, class T2, typename Arg1>
58 T1* object, void (T2::*method)(Arg1)) {
63 template <class T1, class T2, typename Arg1>
66 void (T2::*method)(Arg1),
80 template <class T1, class T2, typename Arg1, typename Arg2>
83 void (T2::*method)(Arg1, Arg2),
90 template <class T1, class T2, typename Arg1, typename Arg2>
93 void (T2
51 NewPermanentCallback( T1* object, void (T2::*method)()) argument
57 NewPermanentCallback( T1* object, void (T2::*method)(Arg1)) argument
64 NewPermanentCallback( T1* object, void (T2::*method)(Arg1), typename internal::Identity<Arg1>::type arg1) argument
81 NewPermanentCallback( T1* object, void (T2::*method)(Arg1, Arg2), typename internal::Identity<Arg1>::type arg1, typename internal::Identity<Arg2>::type arg2) argument
91 NewPermanentCallback( T1* object, void (T2::*method)(Arg1, Arg2), typename internal::Identity<Arg1>::type arg1) argument
100 NewPermanentCallback( T1* object, void (T2::*method)(Arg1, Arg2, Arg3), typename internal::Identity<Arg1>::type arg1, typename internal::Identity<Arg2>::type arg2, typename internal::Identity<Arg3>::type arg3) argument
112 NewPermanentCallback( T1* object, void (T2::*method)(Arg1, Arg2, Arg3, Arg4), typename internal::Identity<Arg1>::type arg1, typename internal::Identity<Arg2>::type arg2, typename internal::Identity<Arg3>::type arg3, typename internal::Identity<Arg4>::type arg4) argument
[all...]
/external/clang/test/CXX/special/class.inhctor/
H A Dp3.cpp35 template<typename T> struct T2 : T1<T> { struct in inherits:T1
44 friend T2<int>::T2(int);
45 friend T2<int>::T2(int, int);
/external/clang/test/CodeGen/
H A Dpragma-pack-1.c20 struct T2 struct in struct:S
H A Dtbaa-struct.cpp29 typedef _Complex int T2; typedef
33 typedef union T1 { T2 field0; T4 field1; } T1;

Completed in 538 milliseconds

12345