Lines Matching refs:comp

140     Compare comp;
150 const Compare& comp = Compare());
153 const Compare& comp, const Container& c);
156 const Compare& comp, Container&& c);
162 priority_queue(const Compare& comp, const Alloc& a);
164 priority_queue(const Compare& comp, const Container& c,
167 priority_queue(const Compare& comp, Container&& c,
174 const Compare& comp, const Alloc& a);
177 const Compare& comp, const Container& c, const Alloc& a);
180 const Compare& comp, Container&& c, const Alloc& a);
531 value_compare comp;
536 : c(), comp() {}
539 : c(__q.c), comp(__q.comp) {}
543 comp = __q.comp;
550 : c(std::move(__q.c)), comp(std::move(__q.comp)) {}
555 comp = std::move(__q.comp);
561 : c(), comp(__comp) {}
585 : c(from_range, std::forward<_Range>(__range)), comp(__comp) {
586 std::make_heap(c.begin(), c.end(), comp);
652 : c(from_range, std::forward<_Range>(__range), __a), comp(__comp) {
653 std::make_heap(c.begin(), c.end(), comp);
660 : c(from_range, std::forward<_Range>(__range), __a), comp() {
661 std::make_heap(c.begin(), c.end(), comp);
683 std::make_heap(c.begin(), c.end(), comp);
781 : c(__c), comp(__comp) {
782 std::make_heap(c.begin(), c.end(), comp);
790 : c(std::move(__c)), comp(__comp) {
791 std::make_heap(c.begin(), c.end(), comp);
800 : c(__f, __l), comp(__comp) {
801 std::make_heap(c.begin(), c.end(), comp);
808 : c(__c), comp(__comp) {
810 std::make_heap(c.begin(), c.end(), comp);
819 : c(std::move(__c)), comp(__comp) {
821 std::make_heap(c.begin(), c.end(), comp);
835 : c(__a), comp(__comp) {}
841 : c(__c, __a), comp(__comp) {
842 std::make_heap(c.begin(), c.end(), comp);
849 : c(__q.c, __a), comp(__q.comp) {}
857 : c(std::move(__c), __a), comp(__comp) {
858 std::make_heap(c.begin(), c.end(), comp);
865 : c(std::move(__q.c), __a), comp(std::move(__q.comp)) {}
876 : c(__f, __l, __a), comp() {
877 std::make_heap(c.begin(), c.end(), comp);
887 : c(__f, __l, __a), comp(__comp) {
888 std::make_heap(c.begin(), c.end(), comp);
898 : c(__c, __a), comp(__comp) {
900 std::make_heap(c.begin(), c.end(), comp);
911 : c(std::move(__c), __a), comp(__comp) {
913 std::make_heap(c.begin(), c.end(), comp);
920 std::push_heap(c.begin(), c.end(), comp);
928 std::push_heap(c.begin(), c.end(), comp);
935 std::push_heap(c.begin(), c.end(), comp);
942 std::pop_heap(c.begin(), c.end(), comp);
951 swap(comp, __q.comp);