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(),
77 multiset(_InputIterator __first, _InputIterator __last,
82 multiset(const multiset& __x)
85 multiset(const _Base& __x)
89 multiset(multiset&& __x)
94 multiset(initializer_list<value_type> __l,
100 ~multiset() _GLIBCXX_NOEXCEPT { }
102 multiset&
103 operator=(const multiset& __x)
110 multiset&
111 operator=(multiset&& __x)
120 multiset&
274 swap(multiset& __x)
285 // multiset operations:
350 operator==(const multiset<_Key, _Compare, _Allocator>& __lhs,
351 const multiset<_Key, _Compare, _Allocator>& __rhs)
356 operator!=(const multiset<_Key, _Compare, _Allocator>& __lhs,
357 const multiset<_Key, _Compare, _Allocator>& __rhs)
362 operator<(const multiset<_Key, _Compare, _Allocator>& __lhs,
363 const multiset<_Key, _Compare, _Allocator>& __rhs)
368 operator<=(const multiset<_Key, _Compare, _Allocator>& __lhs,
369 const multiset<_Key, _Compare, _Allocator>& __rhs)
374 operator>=(const multiset<_Key, _Compare, _Allocator>& __lhs,
375 const multiset<_Key, _Compare, _Allocator>& __rhs)
380 operator>(const multiset<_Key, _Compare, _Allocator>& __lhs,
381 const multiset<_Key, _Compare, _Allocator>& __rhs)
386 swap(multiset<_Key, _Compare, _Allocator>& __x,
387 multiset<_Key, _Compare, _Allocator>& __y)