Home | History | Annotate | Download | only in debug

Lines Matching refs:set

1 // Debugging set implementation -*- C++ -*-
26 /** @file debug/set.h
43 class set
44 : public _GLIBCXX_STD_D::set<_Key,_Compare,_Allocator>,
45 public __gnu_debug::_Safe_sequence<set<_Key, _Compare, _Allocator> >
47 typedef _GLIBCXX_STD_D::set<_Key, _Compare, _Allocator> _Base;
48 typedef __gnu_debug::_Safe_sequence<set> _Safe_base;
60 typedef __gnu_debug::_Safe_iterator<typename _Base::iterator, set>
62 typedef __gnu_debug::_Safe_iterator<typename _Base::const_iterator, set>
73 explicit set(const _Compare& __comp = _Compare(),
78 set(_InputIterator __first, _InputIterator __last,
84 set(const set& __x)
87 set(const _Base& __x)
91 set(set&& __x)
92 : _Base(std::forward<set>(__x)), _Safe_base()
95 set(initializer_list<value_type> __l,
101 ~set() { }
103 set&
104 operator=(const set& __x)
112 set&
113 operator=(set&& __x)
121 set&
254 swap(set&& __x)
256 swap(set& __x)
271 // set operations:
277 // 214. set::find() missing const overload
289 // 214. set::find() missing const overload
299 // 214. set::find() missing const overload
315 // 214. set::find() missing const overload
344 operator==(const set<_Key, _Compare, _Allocator>& __lhs,
345 const set<_Key, _Compare, _Allocator>& __rhs)
350 operator!=(const set<_Key, _Compare, _Allocator>& __lhs,
351 const set<_Key, _Compare, _Allocator>& __rhs)
356 operator<(const set<_Key, _Compare, _Allocator>& __lhs,
357 const set<_Key, _Compare, _Allocator>& __rhs)
362 operator<=(const set<_Key, _Compare, _Allocator>& __lhs,
363 const set<_Key, _Compare, _Allocator>& __rhs)
368 operator>=(const set<_Key, _Compare, _Allocator>& __lhs,
369 const set<_Key, _Compare, _Allocator>& __rhs)
374 operator>(const set<_Key, _Compare, _Allocator>& __lhs,
375 const set<_Key, _Compare, _Allocator>& __rhs)
380 swap(set<_Key, _Compare, _Allocator>& __x,
381 set<_Key, _Compare, _Allocator>& __y)
387 swap(set<_Key, _Compare, _Allocator>&& __x,
388 set<_Key, _Compare, _Allocator>& __y)
393 swap(set<_Key, _Compare, _Allocator>& __x,
394 set<_Key, _Compare, _Allocator>&& __y)