/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/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}}
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/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...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/ |
if.hpp | 32 , typename T2 41 , typename T2 43 struct if_c<false,T1,T2> 45 typedef T2 type; 52 , typename BOOST_MPL_AUX_NA_PARAM(T2) 65 , T2 72 BOOST_MPL_AUX_LAMBDA_SUPPORT(3,if_,(T1,T2,T3)) 84 template< typename T1, typename T2 > struct result_ 93 template< typename T1, typename T2 > struct result_ 95 typedef T2 type [all...] |
same_as.hpp | 28 template< typename T2 > struct apply 30 : is_same<T1,T2> 34 typedef typename is_same<T1,T2>::type type; 42 template< typename T2 > struct apply 44 : not_< is_same<T1,T2> > 48 typedef typename not_< is_same<T1,T2> >::type type;
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/ |
and.hpp | 16 template< bool C_, typename T1, typename T2, typename T3, typename T4 > 22 template< typename T1, typename T2, typename T3, typename T4 > 23 struct and_impl< true,T1,T2,T3,T4 > 26 , T2, T3, T4 45 , typename BOOST_MPL_AUX_NA_PARAM(T2) 52 , T2, T3, T4, T5 59 , ( T1, T2, T3, T4, T5)
|
or.hpp | 16 template< bool C_, typename T1, typename T2, typename T3, typename T4 > 22 template< typename T1, typename T2, typename T3, typename T4 > 23 struct or_impl< false,T1,T2,T3,T4 > 26 , T2, T3, T4 45 , typename BOOST_MPL_AUX_NA_PARAM(T2) 52 , T2, T3, T4, T5 59 , ( T1, T2, T3, T4, T5)
|
apply.hpp | 65 typename F, typename T1, typename T2 71 , T1, T2 77 , (F, T1, T2) 82 typename F, typename T1, typename T2 84 struct apply< F,T1,T2,na,na,na > 85 : apply2< F,T1,T2 > 90 typename F, typename T1, typename T2, typename T3 96 , T1, T2, T3 102 , (F, T1, T2, T3) 107 typename F, typename T1, typename T2, typename T [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];
|
static-assert.c | 31 #define UNION(T1, T2) union { \ 33 __typeof__(T2) two; \ 35 _Static_assert(ASSERT_IS_TYPE(T2), "T2 is not a type"); \ 36 _Static_assert(sizeof(T1) == sizeof(T2), "type size mismatch"); \
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/list/aux_/preprocessed/plain/ |
list10.hpp | 41 typename T0, typename T1, typename T2 47 , list2< T1,T2 > 54 typename T0, typename T1, typename T2, typename T3 60 , list3< T1,T2,T3 > 67 typename T0, typename T1, typename T2, typename T3, typename T4 73 , list4< T1,T2,T3,T4 > 80 typename T0, typename T1, typename T2, typename T3, typename T4 87 , list5< T1,T2,T3,T4,T5 > 94 typename T0, typename T1, typename T2, typename T3, typename T4 101 , list6< T1,T2,T3,T4,T5,T6 [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/vector/aux_/preprocessed/typeof_based/ |
vector10.hpp | 39 typename T0, typename T1, typename T2 43 T2 51 typename T0, typename T1, typename T2, typename T3 56 , vector3< T0,T1,T2 > 63 typename T0, typename T1, typename T2, typename T3, typename T4 68 , vector4< T0,T1,T2,T3 > 75 typename T0, typename T1, typename T2, typename T3, typename T4 81 , vector5< T0,T1,T2,T3,T4 > 88 typename T0, typename T1, typename T2, typename T3, typename T4 94 , vector6< T0,T1,T2,T3,T4,T5 [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/ |
function_traits.hpp | 39 template<typename R, typename T1, typename T2> 40 struct function_traits_helper<R (*)(T1, T2)> 45 typedef T2 arg2_type; 47 typedef T2 second_argument_type; 50 template<typename R, typename T1, typename T2, typename T3> 51 struct function_traits_helper<R (*)(T1, T2, T3)> 56 typedef T2 arg2_type; 60 template<typename R, typename T1, typename T2, typename T3, typename T4> 61 struct function_traits_helper<R (*)(T1, T2, T3, T4)> 66 typedef T2 arg2_type [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/ |
compare.hpp | 40 template< typename T1, typename T2 > 41 bool operator()( const T1& Arg1, const T2& Arg2 ) const 65 template< typename T1, typename T2 > 66 bool operator()( const T1& Arg1, const T2& Arg2 ) const 71 return std::toupper<T1>(Arg1,m_Loc)==std::toupper<T2>(Arg2,m_Loc); 92 template< typename T1, typename T2 > 93 bool operator()( const T1& Arg1, const T2& Arg2 ) const 118 template< typename T1, typename T2 > 119 bool operator()( const T1& Arg1, const T2& Arg2 ) const 124 return std::toupper<T1>(Arg1,m_Loc)<std::toupper<T2>(Arg2,m_Loc) [all...] |