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

1 2 3

  /bionic/libstdc++/include/
stl_pair.h 63 template <class _T1, class _T2>
66 typedef _T2 second_type;
69 _T2 second;
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
77 template <class _T1, class _T2>
78 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
83 template <class _T1, class _T2>
84 inline bool operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y
    [all...]
  /ndk/sources/cxx-stl/gabi++/include/
stl_pair.h 71 template <class _T1, class _T2>
74 typedef _T2 second_type;
77 _T2 second;
79 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
85 template <class _T1, class _T2>
86 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
91 template <class _T1, class _T2>
92 inline bool operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y
    [all...]
  /ndk/sources/cxx-stl/system/include/
stl_pair.h 71 template <class _T1, class _T2>
74 typedef _T2 second_type;
77 _T2 second;
79 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
85 template <class _T1, class _T2>
86 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
91 template <class _T1, class _T2>
92 inline bool operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gabi++/include/
stl_pair.h 63 template <class _T1, class _T2>
66 typedef _T2 second_type;
69 _T2 second;
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
77 template <class _T1, class _T2>
78 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
83 template <class _T1, class _T2>
84 inline bool operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/gabi++/include/
stl_pair.h 71 template <class _T1, class _T2>
74 typedef _T2 second_type;
77 _T2 second;
79 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
85 template <class _T1, class _T2>
86 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
91 template <class _T1, class _T2>
92 inline bool operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/system/include/
stl_pair.h 71 template <class _T1, class _T2>
74 typedef _T2 second_type;
77 _T2 second;
79 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
85 template <class _T1, class _T2>
86 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
91 template <class _T1, class _T2>
92 inline bool operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_pair.h 50 template <class _T1, class _T2>
53 typedef _T2 second_type;
56 _T2 second;
60 pair() : first(_T1()), second(_T2()) {}
62 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
68 pair(const pair<_T1,_T2>& __o) : first(__o.first), second(__o.second) {}
72 pair(__move_source<pair<_T1, _T2> > src) : first(_STLP_PRIV _AsMoveSource(src.get().first)),
80 template <class _T1, class _T2>
81 inline bool _STLP_CALL operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y
    [all...]
_construct.h 137 template <class _T1, class _T2>
138 __attribute__((always_inline)) inline void _Param_Construct_aux(_T1* __p, const _T2& __val, const __false_type&) {
142 template <class _T1, class _T2>
143 __attribute__((always_inline)) inline void _Param_Construct_aux(_T1* __p, const _T2& __val, const __true_type&) {
149 template <class _T1, class _T2>
150 __attribute__((always_inline)) inline void _Param_Construct(_T1* __p, const _T2& __val) {
157 template <class _T1, class _T2>
158 __attribute__((always_inline)) inline void _Move_Construct_Aux(_T1* __p, _T2& __val, const __false_type& /*_IsPOD*/) {
166 template <class _T1, class _T2>
167 __attribute__((always_inline)) inline void _Move_Construct_Aux(_T1* __p, _T2& __val, const __true_type& /*_IsPOD*/)
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_pair.h 50 template <class _T1, class _T2>
53 typedef _T2 second_type;
56 _T2 second;
60 pair() : first(_T1()), second(_T2()) {}
62 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
68 pair(const pair<_T1,_T2>& __o) : first(__o.first), second(__o.second) {}
72 pair(__move_source<pair<_T1, _T2> > src) : first(_STLP_PRIV _AsMoveSource(src.get().first)),
80 template <class _T1, class _T2>
81 inline bool _STLP_CALL operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y
    [all...]
_construct.h 137 template <class _T1, class _T2>
138 inline void _Param_Construct_aux(_T1* __p, const _T2& __val, const __false_type&) {
142 template <class _T1, class _T2>
143 inline void _Param_Construct_aux(_T1* __p, const _T2& __val, const __true_type&) {
149 template <class _T1, class _T2>
150 inline void _Param_Construct(_T1* __p, const _T2& __val) {
157 template <class _T1, class _T2>
158 inline void _Move_Construct_Aux(_T1* __p, _T2& __val, const __false_type& /*_IsPOD*/) {
166 template <class _T1, class _T2>
167 inline void _Move_Construct_Aux(_T1* __p, _T2& __val, const __true_type& /*_IsPOD*/)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
stl_pair.h 93 * @tparam _T2 Type of second object.
95 template<class _T1, class _T2>
99 typedef _T2 second_type; /// @c second_type is the second bound type
102 _T2 second; /// @c second is a copy of the second object
112 _GLIBCXX_CONSTEXPR pair(const _T1& __a, const _T2& __b)
123 is_convertible<const _U2&, _T2>>::value>::type>
133 constexpr pair(_U1&& __x, const _T2& __y)
137 enable_if<is_convertible<_U2, _T2>::value>::type>
143 is_convertible<_U2, _T2>>::value>::type>
149 is_convertible<_U2, _T2>>::value>::type
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_pair.h 93 * @tparam _T2 Type of second object.
95 template<class _T1, class _T2>
99 typedef _T2 second_type; /// @c second_type is the second bound type
102 _T2 second; /// @c second is a copy of the second object
112 _GLIBCXX_CONSTEXPR pair(const _T1& __a, const _T2& __b)
123 is_convertible<const _U2&, _T2>>::value>::type>
133 constexpr pair(_U1&& __x, const _T2& __y)
137 enable_if<is_convertible<_U2, _T2>::value>::type>
143 is_convertible<_U2, _T2>>::value>::type>
149 is_convertible<_U2, _T2>>::value>::type
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_pair.h 93 * @tparam _T2 Type of second object.
95 template<class _T1, class _T2>
99 typedef _T2 second_type; /// @c second_type is the second bound type
102 _T2 second; /// @c second is a copy of the second object
112 _GLIBCXX_CONSTEXPR pair(const _T1& __a, const _T2& __b)
123 is_convertible<const _U2&, _T2>>::value>::type>
133 constexpr pair(_U1&& __x, const _T2& __y)
137 enable_if<is_convertible<_U2, _T2>::value>::type>
143 is_convertible<_U2, _T2>>::value>::type>
149 is_convertible<_U2, _T2>>::value>::type
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_pair.h 93 * @tparam _T2 Type of second object.
95 template<class _T1, class _T2>
99 typedef _T2 second_type; /// @c second_type is the second bound type
102 _T2 second; /// @c second is a copy of the second object
112 _GLIBCXX_CONSTEXPR pair(const _T1& __a, const _T2& __b)
123 is_convertible<const _U2&, _T2>>::value>::type>
133 constexpr pair(_U1&& __x, const _T2& __y)
137 enable_if<is_convertible<_U2, _T2>::value>::type>
143 is_convertible<_U2, _T2>>::value>::type>
149 is_convertible<_U2, _T2>>::value>::type
    [all...]
  /external/clang/test/PCH/
crash-12631281.cpp 12 template < class _T2> struct is_convertible;
15 template <class _T1, class _T2> struct pair {
17 typedef _T2 second_type;
  /external/opencv3/modules/core/src/opencl/runtime/autogenerated/
opencl_clamdblas_impl.hpp 201 template <int ID, typename _R, typename _T1, typename _T2>
204 typedef _R (*FN)(_T1, _T2);
205 static _R switch_fn(_T1 p1, _T2 p2)
209 template <int ID, typename _R, typename _T1, typename _T2, typename _T3>
212 typedef _R (*FN)(_T1, _T2, _T3);
213 static _R switch_fn(_T1 p1, _T2 p2, _T3 p3)
217 template <int ID, typename _R, typename _T1, typename _T2, typename _T3, typename _T4>
220 typedef _R (*FN)(_T1, _T2, _T3, _T4);
221 static _R switch_fn(_T1 p1, _T2 p2, _T3 p3, _T4 p4)
225 template <int ID, typename _R, typename _T1, typename _T2, typename _T3, typename _T4, typename _T5
    [all...]
opencl_clamdfft_impl.hpp 58 template <int ID, typename _R, typename _T1, typename _T2>
61 typedef _R (*FN)(_T1, _T2);
62 static _R switch_fn(_T1 p1, _T2 p2)
66 template <int ID, typename _R, typename _T1, typename _T2, typename _T3>
69 typedef _R (*FN)(_T1, _T2, _T3);
70 static _R switch_fn(_T1 p1, _T2 p2, _T3 p3)
74 template <int ID, typename _R, typename _T1, typename _T2, typename _T3, typename _T4>
77 typedef _R (*FN)(_T1, _T2, _T3, _T4);
78 static _R switch_fn(_T1 p1, _T2 p2, _T3 p3, _T4 p4)
82 template <int ID, typename _R, typename _T1, typename _T2, typename _T3, typename _T4, typename _T5
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/decimal/
decimal.h 55 #define _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_DEC(_Op1, _Op2, _T1, _T2) \
56 inline _T1& _T1::operator _Op1(_T2 __rhs) \
62 #define _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_INT(_Op1, _Op2, _T1, _T2) \
63 inline _T1& _T1::operator _Op1(_T2 __rhs) \
306 #define _DEFINE_DECIMAL_BINARY_OP_WITH_DEC(_Op, _T1, _T2, _T3) \
307 inline _T1 operator _Op(_T2 __lhs, _T3 __rhs) \
314 #define _DEFINE_DECIMAL_BINARY_OP_BOTH(_Op, _T1, _T2, _T3) \
315 inline _T1 operator _Op(_T2 __lhs, _T3 __rhs) \
322 #define _DEFINE_DECIMAL_BINARY_OP_LHS(_Op, _T1, _T2) \
323 inline _T1 operator _Op(_T1 __lhs, _T2 __rhs)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/decimal/
decimal.h 55 #define _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_DEC(_Op1, _Op2, _T1, _T2) \
56 inline _T1& _T1::operator _Op1(_T2 __rhs) \
62 #define _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_INT(_Op1, _Op2, _T1, _T2) \
63 inline _T1& _T1::operator _Op1(_T2 __rhs) \
306 #define _DEFINE_DECIMAL_BINARY_OP_WITH_DEC(_Op, _T1, _T2, _T3) \
307 inline _T1 operator _Op(_T2 __lhs, _T3 __rhs) \
314 #define _DEFINE_DECIMAL_BINARY_OP_BOTH(_Op, _T1, _T2, _T3) \
315 inline _T1 operator _Op(_T2 __lhs, _T3 __rhs) \
322 #define _DEFINE_DECIMAL_BINARY_OP_LHS(_Op, _T1, _T2) \
323 inline _T1 operator _Op(_T1 __lhs, _T2 __rhs)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/decimal/
decimal.h 55 #define _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_DEC(_Op1, _Op2, _T1, _T2) \
56 inline _T1& _T1::operator _Op1(_T2 __rhs) \
62 #define _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_INT(_Op1, _Op2, _T1, _T2) \
63 inline _T1& _T1::operator _Op1(_T2 __rhs) \
306 #define _DEFINE_DECIMAL_BINARY_OP_WITH_DEC(_Op, _T1, _T2, _T3) \
307 inline _T1 operator _Op(_T2 __lhs, _T3 __rhs) \
314 #define _DEFINE_DECIMAL_BINARY_OP_BOTH(_Op, _T1, _T2, _T3) \
315 inline _T1 operator _Op(_T2 __lhs, _T3 __rhs) \
322 #define _DEFINE_DECIMAL_BINARY_OP_LHS(_Op, _T1, _T2) \
323 inline _T1 operator _Op(_T1 __lhs, _T2 __rhs)
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/decimal/
decimal.h 55 #define _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_DEC(_Op1, _Op2, _T1, _T2) \
56 inline _T1& _T1::operator _Op1(_T2 __rhs) \
62 #define _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_INT(_Op1, _Op2, _T1, _T2) \
63 inline _T1& _T1::operator _Op1(_T2 __rhs) \
306 #define _DEFINE_DECIMAL_BINARY_OP_WITH_DEC(_Op, _T1, _T2, _T3) \
307 inline _T1 operator _Op(_T2 __lhs, _T3 __rhs) \
314 #define _DEFINE_DECIMAL_BINARY_OP_BOTH(_Op, _T1, _T2, _T3) \
315 inline _T1 operator _Op(_T2 __lhs, _T3 __rhs) \
322 #define _DEFINE_DECIMAL_BINARY_OP_LHS(_Op, _T1, _T2) \
323 inline _T1 operator _Op(_T1 __lhs, _T2 __rhs)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/parallel/
base.h 156 template<typename _T1, typename _T2, typename _Compare>
157 class _EqualFromLess : public std::binary_function<_T1, _T2, bool>
165 bool operator()(const _T1& __a, const _T2& __b)
243 template<typename _T1, typename _T2>
244 struct _EqualTo : std::binary_function<_T1, _T2, bool>
246 bool operator()(const _T1& __t1, const _T2& __t2) const
251 template<typename _T1, typename _T2>
252 struct _Less : std::binary_function<_T1, _T2, bool>
255 operator()(const _T1& __t1, const _T2& __t2) const
259 operator()(const _T2& __t2, const _T1& __t1) cons
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/parallel/
base.h 156 template<typename _T1, typename _T2, typename _Compare>
157 class _EqualFromLess : public std::binary_function<_T1, _T2, bool>
165 bool operator()(const _T1& __a, const _T2& __b)
243 template<typename _T1, typename _T2>
244 struct _EqualTo : std::binary_function<_T1, _T2, bool>
246 bool operator()(const _T1& __t1, const _T2& __t2) const
251 template<typename _T1, typename _T2>
252 struct _Less : std::binary_function<_T1, _T2, bool>
255 operator()(const _T1& __t1, const _T2& __t2) const
259 operator()(const _T2& __t2, const _T1& __t1) cons
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/
base.h 156 template<typename _T1, typename _T2, typename _Compare>
157 class _EqualFromLess : public std::binary_function<_T1, _T2, bool>
165 bool operator()(const _T1& __a, const _T2& __b)
243 template<typename _T1, typename _T2>
244 struct _EqualTo : std::binary_function<_T1, _T2, bool>
246 bool operator()(const _T1& __t1, const _T2& __t2) const
251 template<typename _T1, typename _T2>
252 struct _Less : std::binary_function<_T1, _T2, bool>
255 operator()(const _T1& __t1, const _T2& __t2) const
259 operator()(const _T2& __t2, const _T1& __t1) cons
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/parallel/
base.h 156 template<typename _T1, typename _T2, typename _Compare>
157 class _EqualFromLess : public std::binary_function<_T1, _T2, bool>
165 bool operator()(const _T1& __a, const _T2& __b)
243 template<typename _T1, typename _T2>
244 struct _EqualTo : std::binary_function<_T1, _T2, bool>
246 bool operator()(const _T1& __t1, const _T2& __t2) const
251 template<typename _T1, typename _T2>
252 struct _Less : std::binary_function<_T1, _T2, bool>
255 operator()(const _T1& __t1, const _T2& __t2) const
259 operator()(const _T2& __t2, const _T1& __t1) cons
    [all...]

Completed in 499 milliseconds

1 2 3