Searched refs:T1 (Results 1 - 25 of 345) sorted by relevance

1234567891011>>

/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/stlport/test/compiler/
H A Dpartial_spec.cpp17 template <class T1>
20 template <class T1>
21 int func(T1 p1);
23 template <class T1>
24 int func(template_struct<T1>);
H A Dttei6.cpp15 template <typename T1>
26 template <typename T1, typename T2>
29 typedef typename A<T1>:: template B<T2>::_Type ABType;
/external/clang/test/CodeGen/
H A D2007-02-04-AddrLValue.c8 } T1; typedef in typeref:struct:__anon18537
16 T1 a[] =
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);
/external/clang/test/SemaCXX/
H A Dinstantiate-blocks.cpp4 template <typename T, typename T1> void foo(T t, T1 r)
7 __block T1 byref_block_arg;
9 T1 (^block)(T) = ^ T1 (T arg) {
16 template <typename T, typename T1> void noret(T t, T1 r)
H A DPR10243.cpp10 struct T1 { struct
12 T1(const T1&) = default;
H A Dredeclared-alias-template.cpp5 template<typename T1, typename T2> using A = T1; // expected-error {{too many template parameters in template redeclaration}}
7 template<typename T1, typename T2> using B = T1; // expected-note {{previous}}
8 template<typename T2, typename T1> using B = T1; // expected-error {{type alias template redefinition with different types}}
/external/libcxx/test/utilities/meta/meta.trans/meta.trans.other/
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...]
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...]
/external/clang/test/Parser/
H A Dcxx-template-argument.cpp50 template<class T1, typename T2> struct Known { }; // expected-note 3 {{template is declared here}}
51 template<class T1, typename T2> struct X;
52 template<class T1, typename T2> struct ABC; // expected-note {{template is declared here}}
55 template<class T1, typename T2> struct foo :
56 UnknownBase<T1,T2> // expected-error {{unknown template name 'UnknownBase'}}
59 template<class T1, typename T2> struct foo2 :
60 UnknownBase<T1,T2>, // expected-error {{unknown template name 'UnknownBase'}}
61 Known<T1> // expected-error {{too few template arguments for class template 'Known'}}
64 template<class T1, typename T2> struct foo3 :
65 UnknownBase<T1,T
[all...]
H A Dcxx0x-member-initializers.cpp31 template <typename, typename> struct T1 { enum {V};}; struct
34 T1<int, int> a1 = T1<int, int>(), *a2 = new T1<int,int>;
37 bool d1 = T1<int, T1<int, int>>::V < 3, d2;
38 T1<int, int()> e = T1<int, int()>();
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/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/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/
H A Dp12.cpp9 template<class T1, class ... Types> float &g(Tuple<T1, Types ...>); // #2
10 template<class T1, class ... Types> double &g(Tuple<T1, Types& ...>); // #3
20 template<class T1, class ... Types> float &h(int (*)(T1, Types ...)); // #2
21 template<class T1, class ... Types> double &h(int (*)(T1, Types& ...)); // #3
/external/clang/test/CXX/special/class.inhctor/
H A Dp3.cpp32 template<typename T> struct T1 : B1 { struct in inherits:B1
35 template<typename T> struct T2 : T1<T> {
36 using T1<int>::T1;
38 template<typename T> struct T3 : T1<int> {
39 using T1<T>::T1;
42 friend T1<int>::T1(int);
43 friend T1<in
[all...]
/external/srec/tools/grxmlcompile/
H A Dhashmap.cpp38 template <typename T1, typename T2>
39 HashMap<T1,T2>::HashMap():
44 template <typename T1, typename T2>
45 void HashMap<T1,T2>::setName(std::string s)
50 template <typename T1, typename T2>
51 bool HashMap<T1,T2>::insert( T1 const & index, T2 const & value)
54 pair<typename std::map<T1,T2>::iterator,bool> result = m_Map.insert( make_pair(index, value) );
62 template <typename T1, typename T2>
63 bool HashMap<T1,T
[all...]
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
H A Dp22.cpp8 template<class T1, class ... Args> float& f(T1 a1, Args ... args);
9 template<class T1, class T2> double& f(T1 a1, T2 a2);
/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/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DCallbacks.java18 * @param <T1> the type of argument 1.
20 interface Callback1<T1> {
24 public void call(T1 arg1);
30 * @param <T1> the type of argument 1.
33 interface Callback2<T1, T2> {
37 public void call(T1 arg1, T2 arg2);
43 * @param <T1> the type of argument 1.
47 interface Callback3<T1, T2, T3> {
51 public void call(T1 arg1, T2 arg2, T3 arg3);
57 * @param <T1> th
[all...]
/external/clang/test/CXX/temp/temp.param/
H A Dp10-0x.cpp7 template<class T1, class T2 = int> using B2 = T1;
8 template<class T1 = int, class T2> using B2 = T1;
H A Dp11.cpp5 template<class T1 = int, // expected-note{{previous default template argument defined here}}
H A Dp10.cpp6 template<class T1, class T2 = int> class B2;
7 template<class T1 = int, class T2> class B2;
H A Dp12.cpp6 template<class T1,
9 template<class T1, typename T2> class B3;
10 template<class T1,
/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...]

Completed in 379 milliseconds

1234567891011>>