• Home
  • Raw
  • Download

Lines Matching refs:_T1

650 template <class _T1, class _T2 = _T1>
653 …_LIBCPP_INLINE_VISIBILITY bool operator()(const _T1& __x, const _T1& __y) const {return __x == __y…
654 …_LIBCPP_INLINE_VISIBILITY bool operator()(const _T1& __x, const _T2& __y) const {return __x == __y…
655 …_LIBCPP_INLINE_VISIBILITY bool operator()(const _T2& __x, const _T1& __y) const {return __x == __y…
659 template <class _T1>
660 struct __equal_to<_T1, _T1>
663 bool operator()(const _T1& __x, const _T1& __y) const {return __x == __y;}
666 template <class _T1>
667 struct __equal_to<const _T1, _T1>
670 bool operator()(const _T1& __x, const _T1& __y) const {return __x == __y;}
673 template <class _T1>
674 struct __equal_to<_T1, const _T1>
677 bool operator()(const _T1& __x, const _T1& __y) const {return __x == __y;}
680 template <class _T1, class _T2 = _T1>
684 bool operator()(const _T1& __x, const _T1& __y) const {return __x < __y;}
687 bool operator()(const _T1& __x, const _T2& __y) const {return __x < __y;}
690 bool operator()(const _T2& __x, const _T1& __y) const {return __x < __y;}
696 template <class _T1>
697 struct __less<_T1, _T1>
700 bool operator()(const _T1& __x, const _T1& __y) const {return __x < __y;}
703 template <class _T1>
704 struct __less<const _T1, _T1>
707 bool operator()(const _T1& __x, const _T1& __y) const {return __x < __y;}
710 template <class _T1>
711 struct __less<_T1, const _T1>
714 bool operator()(const _T1& __x, const _T1& __y) const {return __x < __y;}
728 template <class _T1>
730 bool operator()(const _T1& __x) {return !__p_(__x);}
732 template <class _T1, class _T2>
734 bool operator()(const _T1& __x, const _T2& __y) {return !__p_(__x, __y);}