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

123456789

/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:__anon4129
16 T1 a[] =
H A Dstruct-passing.c8 typedef struct { int a[16]; } T1; typedef in typeref:struct:__anon4260
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}}
H A Dfunction-overload-typo-crash.cpp16 template <typename T1, typename T2> void somefunc(T1*, T2*); //expected-note {{'somefunc' declared here}}
17 template <typename T1, typename T2> void somefunc(T1*, const T2[]); //expected-note 2 {{'somefunc' declared here}}
H A Dtrivial-constructor.cpp2 struct T1 { struct
4 static_assert(__has_trivial_constructor(T1), "T1 has trivial constructor!");
20 struct T5 : T1 {
26 T1 t1[2][2];
H A Dtrivial-destructor.cpp2 struct T1 { struct
4 static_assert(__has_trivial_destructor(T1), "T1 has trivial destructor!");
20 struct T5 : T1 {
26 T1 t1[2][2];
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
H A Dp10.cpp5 typedef int& T1; typedef
11 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.cpp8 template<class T1, class ... Types> float &g(Tuple<T1, Types ...>); // #2
9 template<class T1, class ... Types> double &g(Tuple<T1, Types& ...>); // #3
19 template<class T1, class ... Types> float &h(int (*)(T1, Types ...)); // #2
20 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; // expected-error {{not supported}}
38 template<typename T> struct T3 : T1<int> {
39 using T1<T>::T1; // expected-error {{not supported}}
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...]
H A Dhashmap.h29 template <typename T1, typename T2>
33 //typedef T1 MapValue;
36 bool insert( T1 const & index, T2 const & value);
37 bool remove( T1 const & index);
40 bool getFirst( T1 *index, T2 *value );
41 bool getNext( T1 *index, T2 *value );
42 bool getValue( T1 const & index, T2 *value); //returns value
43 bool getIndex( T2 const & value, T1 *index ); //returns index
47 typename std::map<T1,T2>::iterator begin();
48 typename std::map<T1,T
[all...]
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
H A Dp22.cpp7 template<class T1, class ... Args> float& f(T1 a1, Args ... args);
8 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&)>
H A Dinstantiate-blocks.cpp18 template <typename T, typename T1> void foo(T t, T1 r)
21 __block T1 byref_block_arg;
23 T1 (^block)(char, T, T1, double) = local
24 ^ T1 (char ch, T arg, T1 arg2, double d1) { byref_block_arg = arg2;
/external/clang/test/CXX/temp/temp.param/
H A Dp10-0x.cpp6 template<class T1, class T2 = int> using B2 = T1;
7 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.cpp5 template<class T1, class T2 = int> class B2;
6 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/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dpartial-ordering.cpp33 template<typename T1, typename T2, typename ...Rest>
34 int &f0(T1, T2, Rest...);
36 template<typename T1, typename T2>
37 float &f0(T1, T2);
44 template<typename T1, typename T2, typename ...Rest>
45 int &f1(T1, T2, Rest...);
47 template<typename T1, typename T2>
48 float &f1(T1, T2, ...);
54 template<typename T1, typename T2, typename ...Rest>
55 int &f2(T1, T
[all...]
/external/clang/test/CodeCompletion/
H A Ddocumentation.cpp5 void T1(float x, float y);
27 // CHECK-CC1: COMPLETION: T1 : [#void#]T1(<#float x#>, <#float y#>) : Aaa.

Completed in 213 milliseconds

123456789