Lines Matching refs:comp

113     Compare comp;
125 explicit priority_queue(const Compare& comp);
126 priority_queue(const Compare& comp, const container_type& c);
127 explicit priority_queue(const Compare& comp, container_type&& c);
130 const Compare& comp = Compare());
133 const Compare& comp, const container_type& c);
136 const Compare& comp, container_type&& c);
140 priority_queue(const Compare& comp, const Alloc& a);
142 priority_queue(const Compare& comp, const container_type& c,
145 priority_queue(const Compare& comp, container_type&& c,
441 value_compare comp;
448 : c(), comp() {}
451 priority_queue(const priority_queue& __q) : c(__q.c), comp(__q.comp) {}
455 {c = __q.c; comp = __q.comp; return *this;}
462 : c(_VSTD::move(__q.c)), comp(_VSTD::move(__q.comp)) {}
468 {c = _VSTD::move(__q.c); comp = _VSTD::move(__q.comp); return *this;}
473 : c(), comp(__comp) {}
589 comp(__comp)
591 _VSTD::make_heap(c.begin(), c.end(), comp);
601 comp(__comp)
603 _VSTD::make_heap(c.begin(), c.end(), comp);
614 comp(__comp)
616 _VSTD::make_heap(c.begin(), c.end(), comp);
626 comp(__comp)
629 _VSTD::make_heap(c.begin(), c.end(), comp);
641 comp(__comp)
644 _VSTD::make_heap(c.begin(), c.end(), comp);
667 comp(__comp)
680 comp(__comp)
682 _VSTD::make_heap(c.begin(), c.end(), comp);
693 comp(__q.comp)
695 _VSTD::make_heap(c.begin(), c.end(), comp);
709 comp(__comp)
711 _VSTD::make_heap(c.begin(), c.end(), comp);
722 comp(_VSTD::move(__q.comp))
724 _VSTD::make_heap(c.begin(), c.end(), comp);
735 _VSTD::push_heap(c.begin(), c.end(), comp);
746 _VSTD::push_heap(c.begin(), c.end(), comp);
756 _VSTD::push_heap(c.begin(), c.end(), comp);
766 _VSTD::pop_heap(c.begin(), c.end(), comp);
779 swap(comp, __q.comp);