• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/bits/

Lines Matching defs:__x

122 	bool operator()(const value_type& __x, const value_type& __y) const
123 { return comp(__x.first, __y.first); }
175 map(const map& __x)
176 : _M_t(__x._M_t) { }
226 operator=(const map& __x)
228 _M_t = __x._M_t;
399 insert(const value_type& __x)
400 { return _M_t._M_insert_unique(__x); }
426 insert(iterator __position, const value_type& __x)
427 { return _M_t._M_insert_unique(__position, __x); }
468 erase(const key_type& __x)
469 { return _M_t.erase(__x); }
498 swap(map& __x)
499 { _M_t.swap(__x._M_t); }
541 find(const key_type& __x)
542 { return _M_t.find(__x); }
556 find(const key_type& __x) const
557 { return _M_t.find(__x); }
568 count(const key_type& __x) const
569 { return _M_t.find(__x) == _M_t.end() ? 0 : 1; }
583 lower_bound(const key_type& __x)
584 { return _M_t.lower_bound(__x); }
598 lower_bound(const key_type& __x) const
599 { return _M_t.lower_bound(__x); }
608 upper_bound(const key_type& __x)
609 { return _M_t.upper_bound(__x); }
618 upper_bound(const key_type& __x) const
619 { return _M_t.upper_bound(__x); }
637 equal_range(const key_type& __x)
638 { return _M_t.equal_range(__x); }
656 equal_range(const key_type& __x) const
657 { return _M_t.equal_range(__x); }
682 operator==(const map<_Key, _Tp, _Compare, _Alloc>& __x,
684 { return __x._M_t == __y._M_t; }
699 operator<(const map<_Key, _Tp, _Compare, _Alloc>& __x,
701 { return __x._M_t < __y._M_t; }
706 operator!=(const map<_Key, _Tp, _Compare, _Alloc>& __x,
708 { return !(__x == __y); }
713 operator>(const map<_Key, _Tp, _Compare, _Alloc>& __x,
715 { return __y < __x; }
720 operator<=(const map<_Key, _Tp, _Compare, _Alloc>& __x,
722 { return !(__y < __x); }
727 operator>=(const map<_Key, _Tp, _Compare, _Alloc>& __x,
729 { return !(__x < __y); }
734 swap(map<_Key, _Tp, _Compare, _Alloc>& __x,
736 { __x.swap(__y); }