HomeSort by relevance Sort by last modified time
    Searched refs:T2 (Results 1 - 25 of 184) sorted by null

1 2 3 4 5 6 7 8

  /external/stlport/test/compiler/
ttei6.cpp 18 template <typename T2>
21 typedef T2 _Type;
26 template <typename T1, typename T2>
29 typedef typename A<T1>:: template B<T2>::_Type ABType;
ttei7.cpp 19 template <typename T2>
22 typedef A<T2> _Type;
  /external/clang/test/SemaCXX/
PR10243.cpp 15 struct T2 {
17 T2& operator=(T2&) = default;
trivial-destructor.cpp 6 struct T2 {
7 ~T2();
9 static_assert(!__has_trivial_destructor(T2), "T2 has a user-declared destructor!");
27 static T2 t2; member in struct:T6
32 T2 t2; member in struct:T7
34 static_assert(!__has_trivial_destructor(T7), "t2 does not have a trivial destructor!");
36 struct T8 : T2 {
    [all...]
trivial-constructor.cpp 6 struct T2 {
7 T2();
9 static_assert(!__has_trivial_constructor(T2), "T2 has a user-declared constructor!");
27 static T2 t2; member in struct:T6
36 struct T8 : T2 {
38 static_assert(!__has_trivial_constructor(T8), "The base class T2 does not have a trivial constructor!");
function-overload-typo-crash.cpp 16 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}}
redeclared-alias-template.cpp 5 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/clang/test/CodeGenCXX/
2009-03-17-dbg.cpp 3 template <typename T1,typename T2>
4 inline void f(const T1&,const T2&) { }
6 template <typename T1,typename T2,void F(const T1&,const T2&)>
  /external/srec/tools/grxmlcompile/
hashmap.h 29 template <typename T1, typename T2>
36 bool insert( T1 const & index, T2 const & value);
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,T2>::iterator end();
54 std::map<T1, T2> m_Map;
55 typename std::map<T1,T2>::iterator m_pPos
    [all...]
hashmap.cpp 38 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,T2>::remove( T1 const & index
    [all...]
  /external/clang/test/SemaTemplate/
recovery-crash.cpp 11 template <typename T2> B(T2 x) {
  /cts/tools/dx-tests/src/dxc/junit/argsreturns/pargsreturn/jm/
T2.java 19 public class T2 {
  /external/clang/test/CXX/temp/temp.param/
p10.cpp 5 template<class T1, class T2 = int> class B2;
6 template<class T1 = int, class T2> class B2;
p12.cpp 7 class T2 = int> // expected-note{{previous default template argument defined here}}
9 template<class T1, typename T2> class B3;
11 typename T2 = float> // expected-error{{template parameter redefines default argument}}
p11.cpp 6 class T2> // expected-error{{template parameter missing a default argument}}
p10-0x.cpp 6 template<class T1, class T2 = int> using B2 = T1;
7 template<class T1 = int, class T2> using B2 = T1;
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
partial-ordering.cpp 33 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, T2, Rest...)
    [all...]
  /external/clang/test/Sema/
align-x86.c 38 } T2;
40 short chk1[sizeof(T2) == 4 ? 1 : -1];
41 short chk2[sizeof(T2[1]) == 4 ? 1 : -1];
42 short chk3[sizeof(T2[2]) == 8 ? 1 : -1];
43 short chk4[sizeof(T2[2][1]) == 8 ? 1 : -1];
44 short chk5[sizeof(T2[1][2]) == 8 ? 1 : -1];
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p22.cpp 8 template<class T1, class T2> double& f(T1 a1, T2 a2);
  /external/llvm/include/llvm/Support/
Format.h 96 template <typename T1, typename T2>
99 T2 Val2;
101 format_object2(const char *fmt, const T1 &val1, const T2 &val2)
114 template <typename T1, typename T2, typename T3>
117 T2 Val2;
120 format_object3(const char *fmt, const T1 &val1, const T2 &val2,const T3 &val3)
133 template <typename T1, typename T2, typename T3, typename T4>
136 T2 Val2;
140 format_object4(const char *fmt, const T1 &val1, const T2 &val2,
154 template <typename T1, typename T2, typename T3, typename T4, typename T5
    [all...]
  /hardware/qcom/media/mm-video/vidc/vdec/inc/
Map.h 34 template <typename T,typename T2>
40 T2 data2;
43 node(T t, T2 t2,node* p, node* n) :
44 data(t), data2(t2), prev(p), next(n) {}
50 static Map<T,T2> *m_self;
55 void insert(T,T2);
58 T2 find(T); // Return VALUE
60 T2 begin(); //give the first ele
76 template <typename T,typename T2>
    [all...]
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
Arguments.h 93 template<typename T1, typename T2> struct Arguments2 : Arguments1<T1> {
95 typename WTF::RemoveConst<typename WTF::RemoveReference<T2>::Type>::Type> ValueType;
101 Arguments2(T1 t1, T2 t2)
103 , argument2(t2)
121 T2 argument2;
124 template<typename T1, typename T2> Arguments2<const T1&, const T2&> In(const T1& t1, const T2& t2)
    [all...]
  /external/skia/include/core/
SkTScopedPtr.h 76 // Forbid comparison of SkTScopedPtr types. If T2 != T, it doesn't make
77 // sense, and if T2 == T, it still doesn't make sense because the same
79 template <class T2> bool operator==(SkTScopedPtr<T2> const& o2) const;
80 template <class T2> bool operator!=(SkTScopedPtr<T2> const& o2) const;
  /external/clang/test/PCH/
cxx-alias-decl.cpp 14 using T2 = B<A>;
15 using T2 = S;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/
constructors_destructor_fn_imps.hpp 60 template<typename T0, typename T1, typename T2>
62 PB_DS_CLASS_NAME(T0 t0, T1 t1, T2 t2) : base_type(t0, t1, t2)
65 template<typename T0, typename T1, typename T2, typename T3>
67 PB_DS_CLASS_NAME(T0 t0, T1 t1, T2 t2, T3 t3)
68 : base_type(t0, t1, t2, t3)
71 template<typename T0, typename T1, typename T2, typename T3, typename T4>
73 PB_DS_CLASS_NAME(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4)
    [all...]

Completed in 458 milliseconds

1 2 3 4 5 6 7 8