Lines Matching refs:comp
168 _Compare comp;
171 explicit priority_queue(const _Compare& __x) : c(), comp(__x) {}
173 : c(__s), comp(__x)
174 { make_heap(c.begin(), c.end(), comp); }
179 comp(_STLP_PRIV _AsMoveSource(src.get().comp)) {}
185 : c(__first, __last) { make_heap(c.begin(), c.end(), comp); }
190 : c(__first, __last), comp(__x)
191 { make_heap(c.begin(), c.end(), comp); }
196 : c(__s), comp(__x)
199 make_heap(c.begin(), c.end(), comp);
204 : c(__first, __last) { make_heap(c.begin(), c.end(), comp); }
208 : c(__first, __last), comp(__x)
209 { make_heap(c.begin(), c.end(), comp); }
213 : c(__c), comp(__x)
216 make_heap(c.begin(), c.end(), comp);
226 push_heap(c.begin(), c.end(), comp);
232 pop_heap(c.begin(), c.end(), comp);
262 #undef comp