Home
last modified time | relevance | path

Searched refs:_T2 (Results 1 – 9 of 9) sorted by relevance

/external/stlport/stlport/stl/
D_pair.h50 template <class _T1, class _T2>
53 typedef _T2 second_type;
56 _T2 second;
60 pair() : first(_T1()), second(_T2()) {} in pair()
62 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} in pair()
68 pair(const pair<_T1,_T2>& __o) : first(__o.first), second(__o.second) {} in pair()
72 pair(__move_source<pair<_T1, _T2> > src) : first(_STLP_PRIV _AsMoveSource(src.get().first)), in pair()
80 template <class _T1, class _T2>
81 inline bool _STLP_CALL operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
84 template <class _T1, class _T2>
[all …]
D_construct.h137 template <class _T1, class _T2>
138 inline void _Param_Construct_aux(_T1* __p, const _T2& __val, const __false_type&) { in _Param_Construct_aux()
142 template <class _T1, class _T2>
143 inline void _Param_Construct_aux(_T1* __p, const _T2& __val, const __true_type&) { in _Param_Construct_aux()
149 template <class _T1, class _T2>
150 inline void _Param_Construct(_T1* __p, const _T2& __val) { in _Param_Construct()
157 template <class _T1, class _T2>
158 inline void _Move_Construct_Aux(_T1* __p, _T2& __val, const __false_type& /*_IsPOD*/) { in _Move_Construct_Aux()
166 template <class _T1, class _T2>
167 inline void _Move_Construct_Aux(_T1* __p, _T2& __val, const __true_type& /*_IsPOD*/) { in _Move_Construct_Aux()
[all …]
D_pthread_alloc.h204 template <class _T1, class _T2>
206 const pthread_allocator<_T2>& a2)
210 template <class _T1, class _T2>
212 const pthread_allocator<_T2>&)
387 template <class _T1, class _T2>
389 const per_thread_allocator<_T2>& __a2)
393 template <class _T1, class _T2>
395 const per_thread_allocator<_T2>& __a2)
D_alloc.h380 template <class _T1, class _T2>
381 inline bool _STLP_CALL operator==(const allocator<_T1>&, const allocator<_T2>&) _STLP_NOTHROW
383 template <class _T1, class _T2>
384 inline bool _STLP_CALL operator!=(const allocator<_T1>&, const allocator<_T2>&) _STLP_NOTHROW
D_algo.h464 template <class _T1, class _T2>
466 bool operator() (const _T1& __x, const _T2& __y) const { return __x < __y ; } in operator()
469 template <class _T1, class _T2>
470 __less_2<_T1,_T2> __less2(_T1*, _T2* ) { return __less_2<_T1, _T2>(); } in __less2() argument
/external/llvm/test/FrontendC++/
D2009-06-20-DarwinPPCLayout.cpp11 template<class _T1, class _T2> struct payre {
13 _T2 second;
/external/v8/test/sputnik/
Dsputnik.status73 S7.8.4_A4.3_T2: FAIL_OK
74 S7.8.4_A4.3_T2: FAIL_OK
75 S7.8.4_A6.2_T2: FAIL_OK
78 S7.8.4_A7.2_T2: FAIL_OK
80 S7.8.4_A6.4_T2: FAIL_OK
81 S7.8.4_A7.4_T2: FAIL_OK
141 S15.5.4.11_D1.1_T2: PASS || FAIL_OK
/external/clang/test/Index/
Drecursive-cxx-member-calls.cpp4 template < class _T1, class _T2 > struct pair { _T2 second; };
/external/clang/www/
Dlibstdc++4.4-clang0x.patch282 + pair(_U1&& __x, const _T2& __y)
286 + std::enable_if<std::is_convertible<_U2, _T2>::value>::type>
292 + && std::is_convertible<_U2, _T2>::value>::type>