Lines Matching refs:comp
112 Compare comp;
122 const Compare& comp = Compare());
125 const Compare& comp, const container_type& c);
128 const Compare& comp, container_type&& c);
132 priority_queue(const Compare& comp, const Alloc& a);
134 priority_queue(const Compare& comp, const container_type& c,
137 priority_queue(const Compare& comp, container_type&& c,
428 value_compare comp;
435 : c(), comp() {}
438 priority_queue(const priority_queue& __q) : c(__q.c), comp(__q.comp) {}
442 {c = __q.c; comp = __q.comp; return *this;}
449 : c(_VSTD::move(__q.c)), comp(_VSTD::move(__q.comp)) {}
455 {c = _VSTD::move(__q.c); comp = _VSTD::move(__q.comp); return *this;}
460 : c(), comp(__comp) {}
570 comp(__comp)
572 _VSTD::make_heap(c.begin(), c.end(), comp);
582 comp(__comp)
584 _VSTD::make_heap(c.begin(), c.end(), comp);
595 comp(__comp)
597 _VSTD::make_heap(c.begin(), c.end(), comp);
607 comp(__comp)
610 _VSTD::make_heap(c.begin(), c.end(), comp);
622 comp(__comp)
625 _VSTD::make_heap(c.begin(), c.end(), comp);
646 comp(__comp)
658 comp(__comp)
660 _VSTD::make_heap(c.begin(), c.end(), comp);
670 comp(__q.comp)
672 _VSTD::make_heap(c.begin(), c.end(), comp);
685 comp(__comp)
687 _VSTD::make_heap(c.begin(), c.end(), comp);
697 comp(_VSTD::move(__q.comp))
699 _VSTD::make_heap(c.begin(), c.end(), comp);
710 _VSTD::push_heap(c.begin(), c.end(), comp);
721 _VSTD::push_heap(c.begin(), c.end(), comp);
731 _VSTD::push_heap(c.begin(), c.end(), comp);
741 _VSTD::pop_heap(c.begin(), c.end(), comp);
754 swap(comp, __q.comp);