Lines Matching refs: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);
251 key_compare comp;
263 explicit multimap(const key_compare& comp);
264 multimap(const key_compare& comp, const allocator_type& a);
266 multimap(InputIterator first, InputIterator last, const key_compare& comp);
268 multimap(InputIterator first, InputIterator last, const key_compare& comp,
278 multimap(initializer_list<value_type> il, const key_compare& comp = key_compare());
279 multimap(initializer_list<value_type> il, const key_compare& comp,
483 _Compare comp;
489 : comp() {}
493 : comp(c) {}
495 const _Compare& key_comp() const _NOEXCEPT {return comp;}
499 {return comp(__x.__cc.first, __y.__cc.first);}
502 {return comp(__x.__cc.first, __y);}
505 {return comp(__x, __y.__cc.first);}
512 {return comp (__x, __y.__cc.first);}
518 {return comp (__x.__cc.first, __y);}
801 key_compare comp;
803 _LIBCPP_INLINE_VISIBILITY value_compare(key_compare c) : comp(c) {}
807 {return comp(__x.first, __y.first);}
1540 key_compare comp;
1543 value_compare(key_compare c) : comp(c) {}
1547 {return comp(__x.first, __y.first);}