Lines Matching refs:_T1
652 template <class _T1, class _T2 = _T1>
655 …_LIBCPP_INLINE_VISIBILITY bool operator()(const _T1& __x, const _T1& __y) const {return __x == __y…
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…
661 template <class _T1>
662 struct __equal_to<_T1, _T1>
665 bool operator()(const _T1& __x, const _T1& __y) const {return __x == __y;}
668 template <class _T1>
669 struct __equal_to<const _T1, _T1>
672 bool operator()(const _T1& __x, const _T1& __y) const {return __x == __y;}
675 template <class _T1>
676 struct __equal_to<_T1, const _T1>
679 bool operator()(const _T1& __x, const _T1& __y) const {return __x == __y;}
682 template <class _T1, class _T2 = _T1>
686 bool operator()(const _T1& __x, const _T1& __y) const {return __x < __y;}
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;}
698 template <class _T1>
699 struct __less<_T1, _T1>
702 bool operator()(const _T1& __x, const _T1& __y) const {return __x < __y;}
705 template <class _T1>
706 struct __less<const _T1, _T1>
709 bool operator()(const _T1& __x, const _T1& __y) const {return __x < __y;}
712 template <class _T1>
713 struct __less<_T1, const _T1>
716 bool operator()(const _T1& __x, const _T1& __y) const {return __x < __y;}
730 template <class _T1>
732 bool operator()(const _T1& __x) {return !__p_(__x);}
734 template <class _T1, class _T2>
736 bool operator()(const _T1& __x, const _T2& __y) {return !__p_(__x, __y);}