Lines Matching refs:comp
124 Compare comp;
134 const Compare& comp = Compare());
137 const Compare& comp, const Container& c);
140 const Compare& comp, Container&& c);
144 priority_queue(const Compare& comp, const Alloc& a);
146 priority_queue(const Compare& comp, const Container& c,
149 priority_queue(const Compare& comp, Container&& c,
156 const Compare& comp, const Alloc& a);
159 const Compare& comp, const Container& c, const Alloc& a);
162 const Compare& comp, Container&& c, const Alloc& a);
508 value_compare comp;
515 : c(), comp() {}
518 priority_queue(const priority_queue& __q) : c(__q.c), comp(__q.comp) {}
522 {c = __q.c; comp = __q.comp; return *this;}
529 : c(_VSTD::move(__q.c)), comp(_VSTD::move(__q.comp)) {}
535 {c = _VSTD::move(__q.c); comp = _VSTD::move(__q.comp); return *this;}
540 : c(), comp(__comp) {}
702 comp(__comp)
704 _VSTD::make_heap(c.begin(), c.end(), comp);
714 comp(__comp)
716 _VSTD::make_heap(c.begin(), c.end(), comp);
727 comp(__comp)
729 _VSTD::make_heap(c.begin(), c.end(), comp);
739 comp(__comp)
742 _VSTD::make_heap(c.begin(), c.end(), comp);
754 comp(__comp)
757 _VSTD::make_heap(c.begin(), c.end(), comp);
778 comp(__comp)
790 comp(__comp)
792 _VSTD::make_heap(c.begin(), c.end(), comp);
802 comp(__q.comp)
816 comp(__comp)
818 _VSTD::make_heap(c.begin(), c.end(), comp);
828 comp(_VSTD::move(__q.comp))
841 comp()
843 _VSTD::make_heap(c.begin(), c.end(), comp);
854 comp(__comp)
856 _VSTD::make_heap(c.begin(), c.end(), comp);
867 comp(__comp)
870 _VSTD::make_heap(c.begin(), c.end(), comp);
882 comp(__comp)
885 _VSTD::make_heap(c.begin(), c.end(), comp);
895 _VSTD::push_heap(c.begin(), c.end(), comp);
906 _VSTD::push_heap(c.begin(), c.end(), comp);
916 _VSTD::push_heap(c.begin(), c.end(), comp);
926 _VSTD::pop_heap(c.begin(), c.end(), comp);
939 swap(comp, __q.comp);