Home | History | Annotate | Download | only in bits

Lines Matching defs:__comp

448 	  _Rb_tree_impl(const _Key_compare& __comp, const _Node_allocator& __a)
449 : _Node_allocator(__a), _M_key_compare(__comp), _M_header(),
473 _CheckedCompare(const _KeyCompare & __comp): _M_key_compare(__comp) { }
480 static bool _M_compare_with(_KeyCompareT& __comp, const _Key& __x, const _Key& __y) {
481 if (__comp(__x, __x))
483 if (__comp(__y, __y))
485 bool lt = __comp(__x, __y);
486 if (lt && __comp(__y, __x))
658 _Rb_tree(const _Compare& __comp,
660 : _M_impl(__comp, __a) { }
1313 bool __comp = true;
1317 __comp = _M_impl._M_key_compare(_KeyOfValue()(__v), _S_key(__x));
1318 __x = __comp ? _S_left(__x) : _S_right(__x);
1321 if (__comp)