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

Lines Matching refs:__x

183       multiset(const multiset<_Key,_Compare,_Alloc>& __x)
184 : _M_t(__x._M_t) { }
194 operator=(const multiset<_Key,_Compare,_Alloc>& __x)
196 _M_t = __x._M_t;
278 swap(multiset<_Key, _Compare, _Alloc>& __x)
279 { _M_t.swap(__x._M_t); }
294 insert(const value_type& __x)
295 { return _M_t._M_insert_equal(__x); }
318 insert(iterator __position, const value_type& __x)
319 { return _M_t._M_insert_equal(__position, __x); }
360 erase(const key_type& __x)
361 { return _M_t.erase(__x); }
396 count(const key_type& __x) const
397 { return _M_t.count(__x); }
414 find(const key_type& __x)
415 { return _M_t.find(__x); }
418 find(const key_type& __x) const
419 { return _M_t.find(__x); }
435 lower_bound(const key_type& __x)
436 { return _M_t.lower_bound(__x); }
439 lower_bound(const key_type& __x) const
440 { return _M_t.lower_bound(__x); }
451 upper_bound(const key_type& __x)
452 { return _M_t.upper_bound(__x); }
455 upper_bound(const key_type& __x) const
456 { return _M_t.upper_bound(__x); }
476 equal_range(const key_type& __x)
477 { return _M_t.equal_range(__x); }
480 equal_range(const key_type& __x) const
481 { return _M_t.equal_range(__x); }
507 operator==(const multiset<_Key, _Compare, _Alloc>& __x,
509 { return __x._M_t == __y._M_t; }
524 operator<(const multiset<_Key, _Compare, _Alloc>& __x,
526 { return __x._M_t < __y._M_t; }
531 operator!=(const multiset<_Key, _Compare, _Alloc>& __x,
533 { return !(__x == __y); }
538 operator>(const multiset<_Key,_Compare,_Alloc>& __x,
540 { return __y < __x; }
545 operator<=(const multiset<_Key, _Compare, _Alloc>& __x,
547 { return !(__y < __x); }
552 operator>=(const multiset<_Key, _Compare, _Alloc>& __x,
554 { return !(__x < __y); }
559 swap(multiset<_Key, _Compare, _Alloc>& __x,
561 { __x.swap(__y); }