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) {}
704 comp(__comp)
706 _VSTD::make_heap(c.begin(), c.end(), comp);
716 comp(__comp)
718 _VSTD::make_heap(c.begin(), c.end(), comp);
729 comp(__comp)
731 _VSTD::make_heap(c.begin(), c.end(), comp);
741 comp(__comp)
744 _VSTD::make_heap(c.begin(), c.end(), comp);
756 comp(__comp)
759 _VSTD::make_heap(c.begin(), c.end(), comp);
780 comp(__comp)
792 comp(__comp)
794 _VSTD::make_heap(c.begin(), c.end(), comp);
804 comp(__q.comp)
818 comp(__comp)
820 _VSTD::make_heap(c.begin(), c.end(), comp);
830 comp(_VSTD::move(__q.comp))
843 comp()
845 _VSTD::make_heap(c.begin(), c.end(), comp);
856 comp(__comp)
858 _VSTD::make_heap(c.begin(), c.end(), comp);
869 comp(__comp)
872 _VSTD::make_heap(c.begin(), c.end(), comp);
884 comp(__comp)
887 _VSTD::make_heap(c.begin(), c.end(), comp);
897 _VSTD::push_heap(c.begin(), c.end(), comp);
908 _VSTD::push_heap(c.begin(), c.end(), comp);
918 _VSTD::push_heap(c.begin(), c.end(), comp);
928 _VSTD::pop_heap(c.begin(), c.end(), comp);
941 swap(comp, __q.comp);