Home | History | Annotate | Download | only in bits

Lines Matching refs:__x

115 	bool operator()(const value_type& __x, const value_type& __y) const
116 { return comp(__x.first, __y.first); }
168 multimap(const multimap& __x)
169 : _M_t(__x._M_t) { }
179 multimap(multimap&& __x)
180 : _M_t(std::forward<_Rep_type>(__x._M_t)) { }
248 operator=(const multimap& __x)
250 _M_t = __x._M_t;
263 operator=(multimap&& __x)
267 this->swap(__x);
437 insert(const value_type& __x)
438 { return _M_t._M_insert_equal(__x); }
461 insert(iterator __position, const value_type& __x)
462 { return _M_t._M_insert_equal_(__position, __x); }
517 erase(const key_type& __x)
518 { return _M_t.erase(__x); }
547 swap(multimap& __x)
548 { _M_t.swap(__x._M_t); }
590 find(const key_type& __x)
591 { return _M_t.find(__x); }
605 find(const key_type& __x) const
606 { return _M_t.find(__x); }
614 count(const key_type& __x) const
615 { return _M_t.count(__x); }
629 lower_bound(const key_type& __x)
630 { return _M_t.lower_bound(__x); }
644 lower_bound(const key_type& __x) const
645 { return _M_t.lower_bound(__x); }
654 upper_bound(const key_type& __x)
655 { return _M_t.upper_bound(__x); }
664 upper_bound(const key_type& __x) const
665 { return _M_t.upper_bound(__x); }
681 equal_range(const key_type& __x)
682 { return _M_t.equal_range(__x); }
698 equal_range(const key_type& __x) const
699 { return _M_t.equal_range(__x); }
724 operator==(const multimap<_Key, _Tp, _Compare, _Alloc>& __x,
726 { return __x._M_t == __y._M_t; }
741 operator<(const multimap<_Key, _Tp, _Compare, _Alloc>& __x,
743 { return __x._M_t < __y._M_t; }
748 operator!=(const multimap<_Key, _Tp, _Compare, _Alloc>& __x,
750 { return !(__x == __y); }
755 operator>(const multimap<_Key, _Tp, _Compare, _Alloc>& __x,
757 { return __y < __x; }
762 operator<=(const multimap<_Key, _Tp, _Compare, _Alloc>& __x,
764 { return !(__y < __x); }
769 operator>=(const multimap<_Key, _Tp, _Compare, _Alloc>& __x,
771 { return !(__x < __y); }
776 swap(multimap<_Key, _Tp, _Compare, _Alloc>& __x,
778 { __x.swap(__y); }
783 swap(multimap<_Key, _Tp, _Compare, _Alloc>&& __x,
785 { __x.swap(__y); }
789 swap(multimap<_Key, _Tp, _Compare, _Alloc>& __x,
791 { __x.swap(__y); }