Home | History | Annotate | Download | only in profile

Lines Matching refs: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)
89 multiset(initializer_list<value_type> __l,
95 ~multiset() _GLIBCXX_NOEXCEPT { }
97 multiset&
98 operator=(const multiset& __x)
105 multiset&
106 operator=(multiset&& __x)
115 multiset&
249 swap(multiset& __x)
260 // multiset operations:
325 operator==(const multiset<_Key, _Compare, _Allocator>& __lhs,
326 const multiset<_Key, _Compare, _Allocator>& __rhs)
331 operator!=(const multiset<_Key, _Compare, _Allocator>& __lhs,
332 const multiset<_Key, _Compare, _Allocator>& __rhs)
337 operator<(const multiset<_Key, _Compare, _Allocator>& __lhs,
338 const multiset<_Key, _Compare, _Allocator>& __rhs)
343 operator<=(const multiset<_Key, _Compare, _Allocator>& __lhs,
344 const multiset<_Key, _Compare, _Allocator>& __rhs)
349 operator>=(const multiset<_Key, _Compare, _Allocator>& __lhs,
350 const multiset<_Key, _Compare, _Allocator>& __rhs)
355 operator>(const multiset<_Key, _Compare, _Allocator>& __lhs,
356 const multiset<_Key, _Compare, _Allocator>& __rhs)
361 swap(multiset<_Key, _Compare, _Allocator>& __x,
362 multiset<_Key, _Compare, _Allocator>& __y)