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,
426 value_compare comp;
433 : c(), comp() {}
436 priority_queue(const priority_queue& __q) : c(__q.c), comp(__q.comp) {}
440 {c = __q.c; comp = __q.comp; return *this;}
447 : c(_VSTD::move(__q.c)), comp(_VSTD::move(__q.comp)) {}
453 {c = _VSTD::move(__q.c); comp = _VSTD::move(__q.comp); return *this;}
458 : c(), comp(__comp) {}
568 comp(__comp)
570 _VSTD::make_heap(c.begin(), c.end(), comp);
580 comp(__comp)
582 _VSTD::make_heap(c.begin(), c.end(), comp);
593 comp(__comp)
595 _VSTD::make_heap(c.begin(), c.end(), comp);
605 comp(__comp)
608 _VSTD::make_heap(c.begin(), c.end(), comp);
620 comp(__comp)
623 _VSTD::make_heap(c.begin(), c.end(), comp);
644 comp(__comp)
656 comp(__comp)
658 _VSTD::make_heap(c.begin(), c.end(), comp);
668 comp(__q.comp)
670 _VSTD::make_heap(c.begin(), c.end(), comp);
683 comp(__comp)
685 _VSTD::make_heap(c.begin(), c.end(), comp);
695 comp(_VSTD::move(__q.comp))
697 _VSTD::make_heap(c.begin(), c.end(), comp);
708 _VSTD::push_heap(c.begin(), c.end(), comp);
719 _VSTD::push_heap(c.begin(), c.end(), comp);
729 _VSTD::push_heap(c.begin(), c.end(), comp);
739 _VSTD::pop_heap(c.begin(), c.end(), comp);
752 swap(comp, __q.comp);