Home | History | Annotate | Download | only in stl

Lines Matching refs:multiset

216 class multiset
218 : public __stlport_class<multiset<_Key, _Compare, _Alloc> >
221 typedef multiset<_Key, _Compare, _Alloc> _Self;
253 _Rep_type _M_t; // red-black tree representing multiset
258 explicit multiset(const _Compare& __comp = _Compare(),
261 multiset()
263 explicit multiset(const _Compare& __comp)
265 multiset(const _Compare& __comp, const allocator_type& __a)
271 multiset(_InputIterator __first, _InputIterator __last)
276 multiset(_InputIterator __first, _InputIterator __last,
282 multiset(_InputIterator __first, _InputIterator __last,
287 multiset(const value_type* __first, const value_type* __last)
291 multiset(const value_type* __first, const value_type* __last,
296 multiset(const_iterator __first, const_iterator __last)
300 multiset(const_iterator __first, const_iterator __last,
306 multiset(const _Self& __x) : _M_t(__x._M_t) {}
313 multiset(__move_source<_Self> src)
359 // multiset operations:
389 #define _STLP_TEMPLATE_CONTAINER multiset<_Key,_Compare,_Alloc>
401 struct __move_traits<multiset<_Key,_Compare,_Alloc> > :
402 _STLP_PRIV __move_traits_aux<typename multiset<_Key,_Compare,_Alloc>::_Rep_type>