Home | History | Annotate | Download | only in bits

Lines Matching refs:__x

117 	bool operator()(const value_type& __x, const value_type& __y) const
118 { return comp(__x.first, __y.first); }
172 map(const map& __x)
173 : _M_t(__x._M_t) { }
183 map(map&& __x)
184 : _M_t(std::move(__x._M_t)) { }
253 operator=(const map& __x)
255 _M_t = __x._M_t;
268 operator=(map&& __x)
273 this->swap(__x);
517 insert(const value_type& __x)
518 { return _M_t._M_insert_unique(__x); }
525 insert(_Pair&& __x)
526 { return _M_t._M_insert_unique(std::forward<_Pair>(__x)); }
567 insert(const_iterator __position, const value_type& __x)
569 insert(iterator __position, const value_type& __x)
571 { return _M_t._M_insert_unique_(__position, __x); }
578 insert(const_iterator __position, _Pair&& __x)
580 std::forward<_Pair>(__x)); }
648 erase(const key_type& __x)
649 { return _M_t.erase(__x); }
698 swap(map& __x)
699 { _M_t.swap(__x._M_t); }
741 find(const key_type& __x)
742 { return _M_t.find(__x); }
756 find(const key_type& __x) const
757 { return _M_t.find(__x); }
768 count(const key_type& __x) const
769 { return _M_t.find(__x) == _M_t.end() ? 0 : 1; }
783 lower_bound(const key_type& __x)
784 { return _M_t.lower_bound(__x); }
798 lower_bound(const key_type& __x) const
799 { return _M_t.lower_bound(__x); }
808 upper_bound(const key_type& __x)
809 { return _M_t.upper_bound(__x); }
818 upper_bound(const key_type& __x) const
819 { return _M_t.upper_bound(__x); }
837 equal_range(const key_type& __x)
838 { return _M_t.equal_range(__x); }
856 equal_range(const key_type& __x) const
857 { return _M_t.equal_range(__x); }
882 operator==(const map<_Key, _Tp, _Compare, _Alloc>& __x,
884 { return __x._M_t == __y._M_t; }
899 operator<(const map<_Key, _Tp, _Compare, _Alloc>& __x,
901 { return __x._M_t < __y._M_t; }
906 operator!=(const map<_Key, _Tp, _Compare, _Alloc>& __x,
908 { return !(__x == __y); }
913 operator>(const map<_Key, _Tp, _Compare, _Alloc>& __x,
915 { return __y < __x; }
920 operator<=(const map<_Key, _Tp, _Compare, _Alloc>& __x,
922 { return !(__y < __x); }
927 operator>=(const map<_Key, _Tp, _Compare, _Alloc>& __x,
929 { return !(__x < __y); }
934 swap(map<_Key, _Tp, _Compare, _Alloc>& __x,
936 { __x.swap(__y); }