Lines Matching refs:__y
470 bool operator()(const _CP& __x, const _CP& __y) const
471 {return static_cast<const _Compare&>(*this)(__x.__cc.first, __y.__cc.first);}
473 bool operator()(const _CP& __x, const _Key& __y) const
474 {return static_cast<const _Compare&>(*this)(__x.__cc.first, __y);}
476 bool operator()(const _Key& __x, const _CP& __y) const
477 {return static_cast<const _Compare&>(*this)(__x, __y.__cc.first);}
478 void swap(__map_value_compare&__y)
482 swap(static_cast<const _Compare&>(*this), static_cast<const _Compare&>(__y));
489 operator () ( const _K2& __x, const _CP& __y ) const
490 {return static_cast<const _Compare&>(*this) (__x, __y.__cc.first);}
495 operator () (const _CP& __x, const _K2& __y) const
496 {return static_cast<const _Compare&>(*this) (__x.__cc.first, __y);}
518 bool operator()(const _CP& __x, const _CP& __y) const
519 {return comp(__x.__cc.first, __y.__cc.first);}
521 bool operator()(const _CP& __x, const _Key& __y) const
522 {return comp(__x.__cc.first, __y);}
524 bool operator()(const _Key& __x, const _CP& __y) const
525 {return comp(__x, __y.__cc.first);}
526 void swap(__map_value_compare&__y)
530 swap(comp, __y.comp);
537 operator () ( const _K2& __x, const _CP& __y ) const
538 {return comp (__x, __y.__cc.first);}
543 operator () (const _CP& __x, const _K2& __y) const
544 {return comp (__x.__cc.first, __y);}
552 __map_value_compare<_Key, _CP, _Compare, __b>& __y)
553 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
555 __x.swap(__y);
747 bool operator==(const __map_iterator& __x, const __map_iterator& __y)
748 {return __x.__i_ == __y.__i_;}
751 bool operator!=(const __map_iterator& __x, const __map_iterator& __y)
752 {return __x.__i_ != __y.__i_;}
817 bool operator==(const __map_const_iterator& __x, const __map_const_iterator& __y)
818 {return __x.__i_ == __y.__i_;}
820 bool operator!=(const __map_const_iterator& __x, const __map_const_iterator& __y)
821 {return __x.__i_ != __y.__i_;}
853 bool operator()(const value_type& __x, const value_type& __y) const
854 {return comp(__x.first, __y.first);}
1624 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1626 return __x.size() == __y.size() && _VSTD::equal(__x.begin(), __x.end(), __y.begin());
1633 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1635 return _VSTD::lexicographical_compare(__x.begin(), __x.end(), __y.begin(), __y.end());
1642 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1644 return !(__x == __y);
1651 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1653 return __y < __x;
1660 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1662 return !(__x < __y);
1669 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1671 return !(__y < __x);
1678 map<_Key, _Tp, _Compare, _Allocator>& __y)
1679 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
1681 __x.swap(__y);
1710 bool operator()(const value_type& __x, const value_type& __y) const
1711 {return comp(__x.first, __y.first);}
2168 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2170 return __x.size() == __y.size() && _VSTD::equal(__x.begin(), __x.end(), __y.begin());
2177 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2179 return _VSTD::lexicographical_compare(__x.begin(), __x.end(), __y.begin(), __y.end());
2186 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2188 return !(__x == __y);
2195 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2197 return __y < __x;
2204 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2206 return !(__x < __y);
2213 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2215 return !(__y < __x);
2222 multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2223 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
2225 __x.swap(__y);