Lines Matching full:comp
49 key_compare comp;
62 explicit map(const key_compare& comp);
63 map(const key_compare& comp, const allocator_type& a);
66 const key_compare& comp = key_compare());
69 const key_compare& comp, const allocator_type& a);
78 map(initializer_list<value_type> il, const key_compare& comp = key_compare());
79 map(initializer_list<value_type> il, const key_compare& comp, const allocator_type& a);
267 key_compare comp;
279 explicit multimap(const key_compare& comp);
280 multimap(const key_compare& comp, const allocator_type& a);
282 multimap(InputIterator first, InputIterator last, const key_compare& comp);
284 multimap(InputIterator first, InputIterator last, const key_compare& comp,
294 multimap(initializer_list<value_type> il, const key_compare& comp = key_compare());
295 multimap(initializer_list<value_type> il, const key_compare& comp,
503 _Compare comp;
509 : comp() {}
513 : comp(c) {}
515 const _Compare& key_comp() const _NOEXCEPT {return comp;}
519 {return comp(__x.__cc.first, __y.__cc.first);}
522 {return comp(__x.__cc.first, __y);}
525 {return comp(__x, __y.__cc.first);}
530 swap(comp, __y.comp);
538 {return comp (__x, __y.__cc.first);}
544 {return comp (__x.__cc.first, __y);}
848 key_compare comp;
850 _LIBCPP_INLINE_VISIBILITY value_compare(key_compare c) : comp(c) {}
854 {return comp(__x.first, __y.first);}
1704 key_compare comp;
1707 value_compare(key_compare c) : comp(c) {}
1711 {return comp(__x.first, __y.first);}