Home | History | Annotate | Download | only in profile

Lines Matching defs:multiset

1 // Profiling multiset implementation -*- C++ -*-
25 /** @file profile/multiset.h
38 /// Class std::multiset wrapper with performance instrumentation.
41 class multiset
42 : public _GLIBCXX_STD_C::multiset<_Key, _Compare, _Allocator>
44 typedef _GLIBCXX_STD_C::multiset<_Key, _Compare, _Allocator> _Base;
67 explicit multiset(const _Compare& __comp = _Compare(),
72 multiset(_InputIterator __first, _InputIterator __last,
77 multiset(const multiset& __x)
80 multiset(const _Base& __x)
84 multiset(multiset&& __x)
88 multiset(initializer_list<value_type> __l,
94 ~multiset() { }
96 multiset&
97 operator=(const multiset& __x)
104 multiset&
105 operator=(multiset&& __x)
114 multiset&
248 swap(multiset& __x)
259 // multiset operations:
324 operator==(const multiset<_Key, _Compare, _Allocator>& __lhs,
325 const multiset<_Key, _Compare, _Allocator>& __rhs)
330 operator!=(const multiset<_Key, _Compare, _Allocator>& __lhs,
331 const multiset<_Key, _Compare, _Allocator>& __rhs)
336 operator<(const multiset<_Key, _Compare, _Allocator>& __lhs,
337 const multiset<_Key, _Compare, _Allocator>& __rhs)
342 operator<=(const multiset<_Key, _Compare, _Allocator>& __lhs,
343 const multiset<_Key, _Compare, _Allocator>& __rhs)
348 operator>=(const multiset<_Key, _Compare, _Allocator>& __lhs,
349 const multiset<_Key, _Compare, _Allocator>& __rhs)
354 operator>(const multiset<_Key, _Compare, _Allocator>& __lhs,
355 const multiset<_Key, _Compare, _Allocator>& __rhs)
360 swap(multiset<_Key, _Compare, _Allocator>& __x,
361 multiset<_Key, _Compare, _Allocator>& __y)