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

1 2 3

  /bionic/libstdc++/include/
stl_pair.h 63 template <class _T1, class _T2>
65 typedef _T1 first_type;
68 _T1 first;
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>
73 typedef _T1 first_type;
76 _T1 first;
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>
73 typedef _T1 first_type;
76 _T1 first;
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>
65 typedef _T1 first_type;
68 _T1 first;
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>
73 typedef _T1 first_type;
76 _T1 first;
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>
73 typedef _T1 first_type;
76 _T1 first;
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>
52 typedef _T1 first_type;
55 _T1 first;
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 89 template <class _T1>
90 inline void _Construct_aux (_T1* __p, const __false_type&) {
91 new(__p) _T1();
94 template <class _T1>
95 inline void _Construct_aux (_T1* __p, const __true_type&) {
97 *__p = _T1(0);
101 *__p = _T1();
105 template <class _T1>
106 inline void _Construct(_T1* __p) {
108 memset((char*)__p, _STLP_SHRED_BYTE, sizeof(_T1));
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_pair.h 50 template <class _T1, class _T2>
52 typedef _T1 first_type;
55 _T1 first;
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 89 template <class _T1>
90 inline void _Construct_aux (_T1* __p, const __false_type&) {
91 new(__p) _T1();
94 template <class _T1>
95 inline void _Construct_aux (_T1* __p, const __true_type&) {
97 *__p = _T1(0);
101 *__p = _T1();
105 template <class _T1>
106 inline void _Construct(_T1* __p) {
108 memset((char*)__p, _STLP_SHRED_BYTE, sizeof(_T1));
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
stl_pair.h 92 * @tparam _T1 Type of first object.
95 template<class _T1, class _T2>
98 typedef _T1 first_type; /// @c first_type is the first bound type
101 _T1 first; /// @c first is a copy of the first object
112 _GLIBCXX_CONSTEXPR pair(const _T1& __a, const _T2& __b)
122 enable_if<__and_<is_convertible<const _U1&, _T1>,
132 enable_if<is_convertible<_U1, _T1>::value>::type>
138 constexpr pair(const _T1& __x, _U2&& __y)
142 enable_if<__and_<is_convertible<_U1, _T1>,
148 enable_if<__and_<is_convertible<_U1, _T1>,
    [all...]
stl_construct.h 72 template<typename _T1, typename... _Args>
74 _Construct(_T1* __p, _Args&&... __args)
75 { ::new(static_cast<void*>(__p)) _T1(std::forward<_Args>(__args)...); }
77 template<typename _T1, typename _T2>
79 _Construct(_T1* __p, const _T2& __value)
83 ::new(static_cast<void*>(__p)) _T1(__value);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_pair.h 92 * @tparam _T1 Type of first object.
95 template<class _T1, class _T2>
98 typedef _T1 first_type; /// @c first_type is the first bound type
101 _T1 first; /// @c first is a copy of the first object
112 _GLIBCXX_CONSTEXPR pair(const _T1& __a, const _T2& __b)
122 enable_if<__and_<is_convertible<const _U1&, _T1>,
132 enable_if<is_convertible<_U1, _T1>::value>::type>
138 constexpr pair(const _T1& __x, _U2&& __y)
142 enable_if<__and_<is_convertible<_U1, _T1>,
148 enable_if<__and_<is_convertible<_U1, _T1>,
    [all...]
stl_construct.h 72 template<typename _T1, typename... _Args>
74 _Construct(_T1* __p, _Args&&... __args)
75 { ::new(static_cast<void*>(__p)) _T1(std::forward<_Args>(__args)...); }
77 template<typename _T1, typename _T2>
79 _Construct(_T1* __p, const _T2& __value)
83 ::new(static_cast<void*>(__p)) _T1(__value);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_pair.h 92 * @tparam _T1 Type of first object.
95 template<class _T1, class _T2>
98 typedef _T1 first_type; /// @c first_type is the first bound type
101 _T1 first; /// @c first is a copy of the first object
112 _GLIBCXX_CONSTEXPR pair(const _T1& __a, const _T2& __b)
122 enable_if<__and_<is_convertible<const _U1&, _T1>,
132 enable_if<is_convertible<_U1, _T1>::value>::type>
138 constexpr pair(const _T1& __x, _U2&& __y)
142 enable_if<__and_<is_convertible<_U1, _T1>,
148 enable_if<__and_<is_convertible<_U1, _T1>,
    [all...]
stl_construct.h 72 template<typename _T1, typename... _Args>
74 _Construct(_T1* __p, _Args&&... __args)
75 { ::new(static_cast<void*>(__p)) _T1(std::forward<_Args>(__args)...); }
77 template<typename _T1, typename _T2>
79 _Construct(_T1* __p, const _T2& __value)
83 ::new(static_cast<void*>(__p)) _T1(__value);
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_pair.h 92 * @tparam _T1 Type of first object.
95 template<class _T1, class _T2>
98 typedef _T1 first_type; /// @c first_type is the first bound type
101 _T1 first; /// @c first is a copy of the first object
112 _GLIBCXX_CONSTEXPR pair(const _T1& __a, const _T2& __b)
122 enable_if<__and_<is_convertible<const _U1&, _T1>,
132 enable_if<is_convertible<_U1, _T1>::value>::type>
138 constexpr pair(const _T1& __x, _U2&& __y)
142 enable_if<__and_<is_convertible<_U1, _T1>,
148 enable_if<__and_<is_convertible<_U1, _T1>,
    [all...]
stl_construct.h 72 template<typename _T1, typename... _Args>
74 _Construct(_T1* __p, _Args&&... __args)
75 { ::new(static_cast<void*>(__p)) _T1(std::forward<_Args>(__args)...); }
77 template<typename _T1, typename _T2>
79 _Construct(_T1* __p, const _T2& __value)
83 ::new(static_cast<void*>(__p)) _T1(__value);
  /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) \
69 #define _DEFINE_DECIMAL_COMPOUND_ASSIGNMENTS(_Op1, _Op2, _T1) \
70 _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_DEC(_Op1, _Op2, _T1, decimal32) \
71 _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_DEC(_Op1, _Op2, _T1, decimal64) \
72 _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_DEC(_Op1, _Op2, _T1, decimal128)
    [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) \
69 #define _DEFINE_DECIMAL_COMPOUND_ASSIGNMENTS(_Op1, _Op2, _T1) \
70 _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_DEC(_Op1, _Op2, _T1, decimal32) \
71 _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_DEC(_Op1, _Op2, _T1, decimal64) \
72 _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_DEC(_Op1, _Op2, _T1, decimal128)
    [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) \
69 #define _DEFINE_DECIMAL_COMPOUND_ASSIGNMENTS(_Op1, _Op2, _T1) \
70 _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_DEC(_Op1, _Op2, _T1, decimal32) \
71 _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_DEC(_Op1, _Op2, _T1, decimal64) \
72 _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_DEC(_Op1, _Op2, _T1, decimal128)
    [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) \
69 #define _DEFINE_DECIMAL_COMPOUND_ASSIGNMENTS(_Op1, _Op2, _T1) \
70 _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_DEC(_Op1, _Op2, _T1, decimal32) \
71 _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_DEC(_Op1, _Op2, _T1, decimal64) \
72 _DEFINE_DECIMAL_COMPOUND_ASSIGNMENT_DEC(_Op1, _Op2, _T1, decimal128)
    [all...]
  /external/clang/test/PCH/
crash-12631281.cpp 15 template <class _T1, class _T2> struct pair {
16 typedef _T1 first_type;
  /external/opencv3/modules/core/src/opencl/runtime/autogenerated/
opencl_clamdblas_impl.hpp 193 template <int ID, typename _R, typename _T1>
196 typedef _R (*FN)(_T1);
197 static _R switch_fn(_T1 p1)
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
    [all...]
opencl_clamdfft_impl.hpp 50 template <int ID, typename _R, typename _T1>
53 typedef _R (*FN)(_T1);
54 static _R switch_fn(_T1 p1)
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
    [all...]

Completed in 600 milliseconds

1 2 3