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

Lines Matching defs:__x

121 	bool operator()(const value_type& __x, const value_type& __y) const
122 { return comp(__x.first, __y.first); }
173 multimap(const multimap& __x)
174 : _M_t(__x._M_t) { }
225 operator=(const multimap& __x)
227 _M_t = __x._M_t;
339 insert(const value_type& __x)
340 { return _M_t._M_insert_equal(__x); }
363 insert(iterator __position, const value_type& __x)
364 { return _M_t._M_insert_equal(__position, __x); }
405 erase(const key_type& __x)
406 { return _M_t.erase(__x); }
435 swap(multimap& __x)
436 { _M_t.swap(__x._M_t); }
478 find(const key_type& __x)
479 { return _M_t.find(__x); }
493 find(const key_type& __x) const
494 { return _M_t.find(__x); }
502 count(const key_type& __x) const
503 { return _M_t.count(__x); }
517 lower_bound(const key_type& __x)
518 { return _M_t.lower_bound(__x); }
532 lower_bound(const key_type& __x) const
533 { return _M_t.lower_bound(__x); }
542 upper_bound(const key_type& __x)
543 { return _M_t.upper_bound(__x); }
552 upper_bound(const key_type& __x) const
553 { return _M_t.upper_bound(__x); }
569 equal_range(const key_type& __x)
570 { return _M_t.equal_range(__x); }
586 equal_range(const key_type& __x) const
587 { return _M_t.equal_range(__x); }
612 operator==(const multimap<_Key, _Tp, _Compare, _Alloc>& __x,
614 { return __x._M_t == __y._M_t; }
629 operator<(const multimap<_Key, _Tp, _Compare, _Alloc>& __x,
631 { return __x._M_t < __y._M_t; }
636 operator!=(const multimap<_Key, _Tp, _Compare, _Alloc>& __x,
638 { return !(__x == __y); }
643 operator>(const multimap<_Key, _Tp, _Compare, _Alloc>& __x,
645 { return __y < __x; }
650 operator<=(const multimap<_Key, _Tp, _Compare, _Alloc>& __x,
652 { return !(__y < __x); }
657 operator>=(const multimap<_Key, _Tp, _Compare, _Alloc>& __x,
659 { return !(__x < __y); }
664 swap(multimap<_Key, _Tp, _Compare, _Alloc>& __x,
666 { __x.swap(__y); }