Lines Matching refs:__y
472 bool operator()(const _CP& __x, const _CP& __y) const
473 {return static_cast<const _Compare&>(*this)(__x.__cc.first, __y.__cc.first);}
475 bool operator()(const _CP& __x, const _Key& __y) const
476 {return static_cast<const _Compare&>(*this)(__x.__cc.first, __y);}
478 bool operator()(const _Key& __x, const _CP& __y) const
479 {return static_cast<const _Compare&>(*this)(__x, __y.__cc.first);}
480 void swap(__map_value_compare&__y)
484 swap(static_cast<_Compare&>(*this), static_cast<_Compare&>(__y));
491 operator () ( const _K2& __x, const _CP& __y ) const
492 {return static_cast<const _Compare&>(*this) (__x, __y.__cc.first);}
497 operator () (const _CP& __x, const _K2& __y) const
498 {return static_cast<const _Compare&>(*this) (__x.__cc.first, __y);}
520 bool operator()(const _CP& __x, const _CP& __y) const
521 {return comp(__x.__cc.first, __y.__cc.first);}
523 bool operator()(const _CP& __x, const _Key& __y) const
524 {return comp(__x.__cc.first, __y);}
526 bool operator()(const _Key& __x, const _CP& __y) const
527 {return comp(__x, __y.__cc.first);}
528 void swap(__map_value_compare&__y)
532 swap(comp, __y.comp);
539 operator () ( const _K2& __x, const _CP& __y ) const
540 {return comp (__x, __y.__cc.first);}
545 operator () (const _CP& __x, const _K2& __y) const
546 {return comp (__x.__cc.first, __y);}
554 __map_value_compare<_Key, _CP, _Compare, __b>& __y)
555 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
557 __x.swap(__y);
729 bool operator==(const __map_iterator& __x, const __map_iterator& __y)
730 {return __x.__i_ == __y.__i_;}
733 bool operator!=(const __map_iterator& __x, const __map_iterator& __y)
734 {return __x.__i_ != __y.__i_;}
792 bool operator==(const __map_const_iterator& __x, const __map_const_iterator& __y)
793 {return __x.__i_ == __y.__i_;}
795 bool operator!=(const __map_const_iterator& __x, const __map_const_iterator& __y)
796 {return __x.__i_ != __y.__i_;}
831 bool operator()(const value_type& __x, const value_type& __y) const
832 {return comp(__x.first, __y.first);}
1399 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1401 return __x.size() == __y.size() && _VSTD::equal(__x.begin(), __x.end(), __y.begin());
1408 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1410 return _VSTD::lexicographical_compare(__x.begin(), __x.end(), __y.begin(), __y.end());
1417 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1419 return !(__x == __y);
1426 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1428 return __y < __x;
1435 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1437 return !(__x < __y);
1444 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1446 return !(__y < __x);
1453 map<_Key, _Tp, _Compare, _Allocator>& __y)
1454 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
1456 __x.swap(__y);
1488 bool operator()(const value_type& __x, const value_type& __y) const
1489 {return comp(__x.first, __y.first);}
1864 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
1866 return __x.size() == __y.size() && _VSTD::equal(__x.begin(), __x.end(), __y.begin());
1873 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
1875 return _VSTD::lexicographical_compare(__x.begin(), __x.end(), __y.begin(), __y.end());
1882 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
1884 return !(__x == __y);
1891 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
1893 return __y < __x;
1900 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
1902 return !(__x < __y);
1909 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
1911 return !(__y < __x);
1918 multimap<_Key, _Tp, _Compare, _Allocator>& __y)
1919 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
1921 __x.swap(__y);