Lines Matching refs:__y

270     bool operator()(const _Tp& __x, const _Tp& __y) const
271 {return static_cast<const _Pred&>(*this)(__x.first, __y.first);}
273 bool operator()(const typename _Tp::first_type& __x, const _Tp& __y) const
274 {return static_cast<const _Pred&>(*this)(__x, __y.first);}
276 bool operator()(const _Tp& __x, const typename _Tp::first_type& __y) const
277 {return static_cast<const _Pred&>(*this)(__x.first, __y);}
280 const typename _Tp::first_type& __y) const
281 {return static_cast<const _Pred&>(*this)(__x, __y);}
293 bool operator()(const _Tp& __x, const _Tp& __y) const
294 {return __pred_(__x.first, __y.first);}
296 bool operator()(const typename _Tp::first_type& __x, const _Tp& __y) const
297 {return __pred_(__x, __y.first);}
299 bool operator()(const _Tp& __x, const typename _Tp::first_type& __y) const
300 {return __pred_(__x.first, __y);}
303 const typename _Tp::first_type& __y) const
304 {return __pred_(__x, __y);}
398 bool operator==(const __hash_map_iterator& __x, const __hash_map_iterator& __y)
399 {return __x.__i_ == __y.__i_;}
401 bool operator!=(const __hash_map_iterator& __x, const __hash_map_iterator& __y)
402 {return __x.__i_ != __y.__i_;}
451 bool operator==(const __hash_map_const_iterator& __x, const __hash_map_const_iterator& __y)
452 {return __x.__i_ == __y.__i_;}
454 bool operator!=(const __hash_map_const_iterator& __x, const __hash_map_const_iterator& __y)
455 {return __x.__i_ != __y.__i_;}
704 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __y)
706 __x.swap(__y);
712 const hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __y)
714 if (__x.size() != __y.size())
718 for (const_iterator __i = __x.begin(), __ex = __x.end(), __ey = __y.end();
721 const_iterator __j = __y.find(__i->first);
732 const hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __y)
734 return !(__x == __y);
945 hash_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>& __y)
947 __x.swap(__y);
953 const hash_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>& __y)
955 if (__x.size() != __y.size())
963 _EqRng __yeq = __y.equal_range(__i->first);
977 const hash_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>& __y)
979 return !(__x == __y);