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

1 2 3 4 5 6 7 8 91011>>

  /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=(const T2&) = default;
trivial-destructor.cpp 7 struct T2 {
8 ~T2();
10 static_assert(!__has_trivial_destructor(T2), "T2 has a user-declared destructor!");
28 static T2 t2; member in struct:T6
33 T2 t2; member in struct:T7
35 static_assert(!__has_trivial_destructor(T7), "t2 does not have a trivial destructor!");
37 struct T8 : T2 {
    [all...]
trivial-constructor.cpp 7 struct T2 {
8 T2();
10 static_assert(!__has_trivial_constructor(T2), "T2 has a user-declared constructor!");
28 static T2 t2; member in struct:T6
37 struct T8 : T2 {
39 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}}
  /external/clang/test/CodeCompletion/
documentation.cpp 8 class T2 {
22 T2 t2; local
23 t2.
28 // CHECK-CC1: COMPLETION: T2 : T2 : Bbb.
  /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 10 template <typename T2> B(T2 x) {
  /external/clang/test/CXX/temp/temp.param/
p10.cpp 6 template<class T1, class T2 = int> class B2;
7 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}}
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/tuple/tuple.tuple/tuple.rel/
eq.pass.cpp 26 typedef std::tuple<> T2;
28 const T2 t2; local
29 assert(t1 == t2);
30 assert(!(t1 != t2));
34 typedef std::tuple<double> T2;
36 const T2 t2(1.1);
37 assert(!(t1 == t2));
38 assert(t1 != t2);
    [all...]
lt.pass.cpp 38 typedef std::tuple<> T2;
40 const T2 t2; local
41 assert(!(t1 < t2));
42 assert( (t1 <= t2));
43 assert(!(t1 > t2));
44 assert( (t1 >= t2));
48 typedef std::tuple<double> T2;
50 const T2 t2(1)
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
partial-ordering.cpp 34 template<typename T1, typename T2, typename ...Rest>
35 int &f0(T1, T2, Rest...);
37 template<typename T1, typename T2>
38 float &f0(T1, T2);
45 template<typename T1, typename T2, typename ...Rest>
46 int &f1(T1, T2, Rest...);
48 template<typename T1, typename T2>
49 float &f1(T1, T2, ...);
55 template<typename T1, typename T2, typename ...Rest>
56 int &f2(T1, T2, Rest...)
    [all...]
  /external/clang/test/Sema/
align-x86.c 43 } T2;
45 short chk1[sizeof(T2) == 4 ? 1 : -1];
46 short chk2[sizeof(T2[1]) == 4 ? 1 : -1];
47 short chk3[sizeof(T2[2]) == 8 ? 1 : -1];
48 short chk4[sizeof(T2[2][1]) == 8 ? 1 : -1];
49 short chk5[sizeof(T2[1][2]) == 8 ? 1 : -1];
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p22.cpp 9 template<class T1, class T2> double& f(T1 a1, T2 a2);
  /external/clang/test/Index/
complete-documentation.cpp 8 class T2 {
33 T2 t2; local
34 t2.T4;
42 // CHECK-CC1: ClassDecl:{TypedText T2}{{.*}}(brief comment: Bbb.)
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.mutex/thread.lock/
types.pass.cpp 26 typedef std::try_to_lock_t T2;
30 T2 t2 = std::try_to_lock; local
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/meta/meta.unary/meta.unary.prop/
is_standard_layout.pass.cpp 16 template <class T1, class T2>
20 T2 second;
  /external/clang/test/CXX/special/class.inhctor/
p3.cpp 35 template<typename T> struct T2 : T1<T> {
44 friend T2<int>::T2(int);
45 friend T2<int>::T2(int, int);
  /external/openfst/src/include/fst/script/
arg-packs.h 54 class T2 = none_type,
64 T2 arg2;
73 Package(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6,
81 class T2,
88 struct Package<T1, T2, T3, T4, T5, T6, T7, T8, none_type> {
90 T2 arg2;
98 Package(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6,
106 class T2,
112 struct Package<T1, T2, T3, T4, T5, T6, T7,
115 T2 arg2
    [all...]
  /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...]

Completed in 952 milliseconds

1 2 3 4 5 6 7 8 91011>>