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

Lines Matching refs:__x

193       set(const set<_Key,_Compare,_Alloc>& __x)
194 : _M_t(__x._M_t) { }
204 operator=(const set<_Key, _Compare, _Alloc>& __x)
206 _M_t = __x._M_t;
286 swap(set<_Key,_Compare,_Alloc>& __x)
287 { _M_t.swap(__x._M_t); }
304 insert(const value_type& __x)
307 _M_t._M_insert_unique(__x);
331 insert(iterator __position, const value_type& __x)
332 { return _M_t._M_insert_unique(__position, __x); }
372 erase(const key_type& __x)
373 { return _M_t.erase(__x); }
411 count(const key_type& __x) const
412 { return _M_t.find(__x) == _M_t.end() ? 0 : 1; }
429 find(const key_type& __x)
430 { return _M_t.find(__x); }
433 find(const key_type& __x) const
434 { return _M_t.find(__x); }
450 lower_bound(const key_type& __x)
451 { return _M_t.lower_bound(__x); }
454 lower_bound(const key_type& __x) const
455 { return _M_t.lower_bound(__x); }
466 upper_bound(const key_type& __x)
467 { return _M_t.upper_bound(__x); }
470 upper_bound(const key_type& __x) const
471 { return _M_t.upper_bound(__x); }
491 equal_range(const key_type& __x)
492 { return _M_t.equal_range(__x); }
495 equal_range(const key_type& __x) const
496 { return _M_t.equal_range(__x); }
521 operator==(const set<_Key, _Compare, _Alloc>& __x,
523 { return __x._M_t == __y._M_t; }
538 operator<(const set<_Key, _Compare, _Alloc>& __x,
540 { return __x._M_t < __y._M_t; }
545 operator!=(const set<_Key, _Compare, _Alloc>& __x,
547 { return !(__x == __y); }
552 operator>(const set<_Key, _Compare, _Alloc>& __x,
554 { return __y < __x; }
559 operator<=(const set<_Key, _Compare, _Alloc>& __x,
561 { return !(__y < __x); }
566 operator>=(const set<_Key, _Compare, _Alloc>& __x,
568 { return !(__x < __y); }
573 swap(set<_Key, _Compare, _Alloc>& __x, set<_Key, _Compare, _Alloc>& __y)
574 { __x.swap(__y); }