Home
last modified time | relevance | path

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

/external/libcxx/include/
Dutility252 template <class _T1, class _T2>
256 typedef _T2 second_type;
259 _T2 second;
267 pair(const _T1& __x, const _T2& __y)
275 is_convertible<const _U2&, _T2>::value>::type* = 0
319 is_convertible<_U2, _T2>::value>::type* = 0)
405 template <class _T1, class _T2>
408 operator==(const pair<_T1,_T2>& __x, const pair<_T1,_T2>& __y)
413 template <class _T1, class _T2>
416 operator!=(const pair<_T1,_T2>& __x, const pair<_T1,_T2>& __y)
[all …]
Dfunctional504 template <class _T1, class _T2>
506 auto operator()(_T1&& __t, _T2&& __u) const
507 _NOEXCEPT_(noexcept(_VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u)))
508 -> decltype (_VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u))
509 { return _VSTD::forward<_T1>(__t) + _VSTD::forward<_T2>(__u); }
531 template <class _T1, class _T2>
533 auto operator()(_T1&& __t, _T2&& __u) const
534 _NOEXCEPT_(noexcept(_VSTD::forward<_T1>(__t) - _VSTD::forward<_T2>(__u)))
535 -> decltype (_VSTD::forward<_T1>(__t) - _VSTD::forward<_T2>(__u))
536 { return _VSTD::forward<_T1>(__t) - _VSTD::forward<_T2>(__u); }
[all …]
D__tuple93 template <class _T1, class _T2> struct _LIBCPP_TYPE_VIS_ONLY pair;
95 template <class _T1, class _T2> struct __tuple_like<pair<_T1, _T2> > : true_type {};
97 template <size_t _Ip, class _T1, class _T2>
99 typename tuple_element<_Ip, pair<_T1, _T2> >::type&
100 get(pair<_T1, _T2>&) _NOEXCEPT;
102 template <size_t _Ip, class _T1, class _T2>
104 const typename tuple_element<_Ip, pair<_T1, _T2> >::type&
105 get(const pair<_T1, _T2>&) _NOEXCEPT;
108 template <size_t _Ip, class _T1, class _T2>
110 typename tuple_element<_Ip, pair<_T1, _T2> >::type&&
[all …]
Dmemory1995 template <class _T1, class _T2, bool = is_same<typename remove_cv<_T1>::type,
1996 typename remove_cv<_T2>::type>::value,
1999 bool = is_empty<_T2>::value
2000 && !__libcpp_is_final<_T2>::value
2004 template <class _T1, class _T2, bool IsSame>
2005 struct __libcpp_compressed_pair_switch<_T1, _T2, IsSame, false, false> {enum {value = 0};};
2007 template <class _T1, class _T2, bool IsSame>
2008 struct __libcpp_compressed_pair_switch<_T1, _T2, IsSame, true, false> {enum {value = 1};};
2010 template <class _T1, class _T2, bool IsSame>
2011 struct __libcpp_compressed_pair_switch<_T1, _T2, IsSame, false, true> {enum {value = 2};};
[all …]
Dtype_traits861 template <class _T1, class _T2> struct _LIBCPP_TYPE_VIS_ONLY is_convertible
862 : public integral_constant<bool, __is_convertible_to(_T1, _T2) &&
863 !is_abstract<_T2>::value> {};
908 template <class _T1, class _T2,
910 …unsigned _T2_is_array_function_or_void = __is_convertible_imp::__is_array_function_or_void<_T2>::v…
913 __is_convertible_imp::__is_convertible_test<_T1, _T2>::value
915 && !(!is_function<_T1>::value && !is_reference<_T1>::value && is_reference<_T2>::value
916 && (!is_const<typename remove_reference<_T2>::type>::value
917 || is_volatile<typename remove_reference<_T2>::type>::value)
919 typename remove_cv<typename remove_reference<_T2>::type>::type>::value
[all …]
D__functional_base70 template <class _T1, class _T2>
72 auto operator()(_T1&& __t, _T2&& __u) const
73 _NOEXCEPT_(noexcept(_VSTD::forward<_T1>(__t) < _VSTD::forward<_T2>(__u)))
74 -> decltype (_VSTD::forward<_T1>(__t) < _VSTD::forward<_T2>(__u))
75 { return _VSTD::forward<_T1>(__t) < _VSTD::forward<_T2>(__u); }
Dalgorithm652 template <class _T1, class _T2 = _T1>
656 …_LIBCPP_INLINE_VISIBILITY bool operator()(const _T1& __x, const _T2& __y) const {return __x == __y…
657 …_LIBCPP_INLINE_VISIBILITY bool operator()(const _T2& __x, const _T1& __y) const {return __x == __y…
658 …_LIBCPP_INLINE_VISIBILITY bool operator()(const _T2& __x, const _T2& __y) const {return __x == __y…
682 template <class _T1, class _T2 = _T1>
689 bool operator()(const _T1& __x, const _T2& __y) const {return __x < __y;}
692 bool operator()(const _T2& __x, const _T1& __y) const {return __x < __y;}
695 bool operator()(const _T2& __x, const _T2& __y) const {return __x < __y;}
734 template <class _T1, class _T2>
736 bool operator()(const _T1& __x, const _T2& __y) {return !__p_(__x, __y);}
Dtuple1120 template <class _T1, class _T2>
1123 pair<_T1, _T2>::pair(piecewise_construct_t,
/external/opencv3/modules/core/src/opencl/runtime/autogenerated/
Dopencl_clamdfft_impl.hpp58 template <int ID, typename _R, typename _T1, typename _T2>
61 typedef _R (*FN)(_T1, _T2);
62 static _R switch_fn(_T1 p1, _T2 p2) in switch_fn()
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) in switch_fn()
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) in switch_fn()
82 template <int ID, typename _R, typename _T1, typename _T2, typename _T3, typename _T4, typename _T5>
[all …]
Dopencl_clamdblas_impl.hpp201 template <int ID, typename _R, typename _T1, typename _T2>
204 typedef _R (*FN)(_T1, _T2);
205 static _R switch_fn(_T1 p1, _T2 p2) in switch_fn()
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) in switch_fn()
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) in switch_fn()
225 template <int ID, typename _R, typename _T1, typename _T2, typename _T3, typename _T4, typename _T5>
[all …]
Dopencl_core_impl.hpp114 template <int ID, typename _R, typename _T1, typename _T2>
117 typedef _R (CL_API_CALL*FN)(_T1, _T2);
118 static _R CL_API_CALL switch_fn(_T1 p1, _T2 p2) in switch_fn()
122 template <int ID, typename _R, typename _T1, typename _T2, typename _T3>
125 typedef _R (CL_API_CALL*FN)(_T1, _T2, _T3);
126 static _R CL_API_CALL switch_fn(_T1 p1, _T2 p2, _T3 p3) in switch_fn()
130 template <int ID, typename _R, typename _T1, typename _T2, typename _T3, typename _T4>
133 typedef _R (CL_API_CALL*FN)(_T1, _T2, _T3, _T4);
134 static _R CL_API_CALL switch_fn(_T1 p1, _T2 p2, _T3 p3, _T4 p4) in switch_fn()
138 template <int ID, typename _R, typename _T1, typename _T2, typename _T3, typename _T4, typename _T5>
[all …]
/external/clang/test/PCH/
Dcrash-12631281.cpp12 template < class _T2> struct is_convertible;
15 template <class _T1, class _T2> struct pair {
17 typedef _T2 second_type;
/external/clang/test/SemaTemplate/
Dclass-template-decl.cpp90 template <class _T1, class _T2> class pair;
92 template <class _T1, class _T2>
93 class tuple_element<0, pair<_T1, _T2> >
/external/clang/test/Analysis/
Dpointer-to-member.cpp43 template <class _T1, class _T2> struct A {
44 A (const _T1 &, const _T2 &);
/external/opencv3/modules/core/include/opencv2/core/
Dmatx.hpp181 template<typename _T2> Matx(const Matx<_Tp, m, n>& a, _T2 alpha, Matx_ScaleOp);
351 template<typename _T2> Vec(const Matx<_Tp, cn, 1>& a, _T2 alpha, Matx_ScaleOp);
750 template<typename _Tp, int m, int n> template<typename _T2> inline
751 Matx<_Tp,m,n>::Matx(const Matx<_Tp, m, n>& a, _T2 alpha, Matx_ScaleOp) in Matx()
850 template<typename _Tp, typename _T2, int m, int n> static inline
851 MatxCommaInitializer<_Tp, m, n> operator << (const Matx<_Tp, m, n>& mtx, _T2 val) in operator <<()
862 template<typename _Tp, int m, int n> template<typename _T2> inline
863 MatxCommaInitializer<_Tp, m, n>& MatxCommaInitializer<_Tp, m, n>::operator , (_T2 value) in operator ,()
940 template<typename _Tp, int cn> template<typename _T2> inline
941 Vec<_Tp, cn>::Vec(const Matx<_Tp, cn, 1>& a, _T2 alpha, Matx_ScaleOp op) in Vec()
[all …]
/external/clang/test/CXX/drs/
Ddr15xx.cpp55 template < class _T1, class _T2 > struct pair { _T2 second; };
/external/clang/test/Index/
Drecursive-cxx-member-calls.cpp4 template < class _T1, class _T2 > struct pair { _T2 second; };
/external/v8/test/mjsunit/regress/
Dregress-2318.js53 var _T0 = 95; var _T1 = 96; var _T2 = 97; var _T3 = 98; var _T4 = 99;
/external/opencv3/modules/calib3d/src/
Dfisheye.hpp51 void compose_motion(InputArray _om1, InputArray _T1, InputArray _om2, InputArray _T2,
Dfisheye.cpp1571 void cv::internal::compose_motion(InputArray _om1, InputArray _T1, InputArray _om2, InputArray _T2, in compose_motion() argument
1578 Mat T2 = _T2.getMat().reshape(1, 3); in compose_motion()
/external/v8/test/test262/
Dtest262.status400 'built-ins/Promise/race/S25.4.4.3_A3.1_T2': [FAIL],
507 'built-ins/decodeURI/S15.1.3.1_A1.11_T2': [SKIP],
509 'built-ins/decodeURI/S15.1.3.1_A1.12_T2': [SKIP],
516 'language/literals/regexp/S7.8.5_A1.1_T2': [SKIP],
517 'language/literals/regexp/S7.8.5_A1.4_T2': [SKIP],
518 'language/literals/regexp/S7.8.5_A2.1_T2': [SKIP],
519 'language/literals/regexp/S7.8.5_A2.4_T2': [SKIP],
616 'built-ins/Array/prototype/join/S15.4.4.5_A3.1_T2': [SKIP],
716 'built-ins/decodeURIComponent/S15.1.3.2_A1.11_T2': [SKIP],
717 'built-ins/decodeURIComponent/S15.1.3.2_A1.12_T2': [SKIP],
/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>
/external/opencv3/modules/videoio/src/
Dppltasks_winrt.hpp368 template <typename _T1, typename _T2>
369 _T2 _ProgressTypeSelector(ABI::Windows::Foundation::IAsyncOperationWithProgress<_T1, _T2>*);
385 template <typename _T1, typename _T2>
386 …ress _AsyncOperationKindSelector(ABI::Windows::Foundation::IAsyncOperationWithProgress<_T1, _T2>*);
436 template <typename _T1, typename _T2>
437 …ReturnAsyncOperationKindSelector(ABI::Windows::Foundation::IAsyncOperationWithProgress<_T1, _T2>*);
/external/opencv3/modules/highgui/src/
Dppltasks_winrt.h368 template <typename _T1, typename _T2>
369 _T2 _ProgressTypeSelector(ABI::Windows::Foundation::IAsyncOperationWithProgress<_T1, _T2>*);
385 template <typename _T1, typename _T2>
386 …ress _AsyncOperationKindSelector(ABI::Windows::Foundation::IAsyncOperationWithProgress<_T1, _T2>*);
436 template <typename _T1, typename _T2>
437 …ReturnAsyncOperationKindSelector(ABI::Windows::Foundation::IAsyncOperationWithProgress<_T1, _T2>*);
/external/opencv3/modules/calib3d/test/
Dtest_cameracalibration.cpp1609 vector<Mat> _R1, _R2, _T1, _T2; in run() local
1611 calibrateCamera( objpt, imgpt2, imgsize, _M2, _D2, _R2, _T2, 0 ); in run()