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);
225 key_compare comp;
237 explicit multimap(const key_compare& comp);
238 multimap(const key_compare& comp, const allocator_type& a);
240 multimap(InputIterator first, InputIterator last, const key_compare& comp);
242 multimap(InputIterator first, InputIterator last, const key_compare& comp,
252 multimap(initializer_list<value_type> il, const key_compare& comp = key_compare());
253 multimap(initializer_list<value_type> il, const key_compare& comp,
417 _Compare comp;
423 : comp() {}
427 : comp(c) {}
429 const _Compare& key_comp() const _NOEXCEPT {return comp;}
433 {return comp(__x.__cc.first, __y.__cc.first);}
436 {return comp(__x.__cc.first, __y);}
439 {return comp(__x, __y.__cc.first);}
652 key_compare comp;
654 _LIBCPP_INLINE_VISIBILITY value_compare(key_compare c) : comp(c) {}
658 {return comp(__x.first, __y.first);}
1367 key_compare comp;
1370 value_compare(key_compare c) : comp(c) {}
1374 {return comp(__x.first, __y.first);}