Home | History | Annotate | Download | only in ext

Lines Matching defs:__right

493     _S_tree_concat(_RopeRep* __left, _RopeRep* __right)
495 _RopeConcatenation* __result = _S_new_RopeConcatenation(__left, __right,
549 _RopeLeaf* __right =
551 if (__right->_M_size + __slen <= size_t(_S_copy_max))
555 _S_leaf_concat_char_iter((_RopeLeaf*)__right, __s, __slen);
612 _RopeLeaf* __right = (_RopeLeaf*)(((_RopeConcatenation*)
614 if (__detail::_S_leaf == __right->_M_tag
615 && __right->_M_size + __slen <= size_t(_S_copy_max))
618 _S_destr_leaf_concat_char_iter(__right, __s, __slen);
619 if (__right == __new_right)
622 __right->_M_unref_nonnil();
634 _RopeRep* __right =
638 { __result = _S_tree_concat(__r, __right); }
642 _S_unref(__right);
652 _S_concat(_RopeRep* __left, _RopeRep* __right)
656 _S_ref(__right);
657 return __right;
659 if (0 == __right)
664 if (__detail::_S_leaf == __right->_M_tag)
668 if (__right->_M_size + __left->_M_size <= size_t(_S_copy_max))
670 ((_RopeLeaf*)__right)->_M_data,
671 __right->_M_size);
680 + __right->_M_size <= size_t(_S_copy_max))
685 __right)->
687 __right->_M_size);
701 __right->_M_ref_nonnil();
703 { return(_S_tree_concat(__left, __right)); }
707 _S_unref(__right);
743 _RopeRep* __right = __c->_M_right;
750 return _S_substring(__right, __start - __left_len,
755 _Self_destruct_ptr __right_result(_S_substring(__right, 0,
942 _RopeRep* __right = __conc->_M_right;
944 if (!_S_apply_to_pieces(__c, __right,
1084 _RopeRep* __right = __c->_M_right;
1086 return _S_flatten(__right, __rest);
1124 _RopeRep* __right = __c->_M_right;
1137 _S_dump(__right, __indent + 2);
1425 _S_compare (const _RopeRep* __left, const _RopeRep* __right)
1430 if (0 == __right)
1435 __right_len = __right->_M_size;
1439 if (__detail::_S_leaf == __right->_M_tag)
1441 _RopeLeaf* __r = (_RopeLeaf*) __right;
1449 const_iterator __rstart(__right, 0);
1450 const_iterator __rend(__right, __right_len);
1460 if (__detail::_S_leaf == __right->_M_tag)
1462 _RopeLeaf* __r = (_RopeLeaf*) __right;
1469 const_iterator __rstart(__right, 0);
1470 const_iterator __rend(__right, __right_len);
1495 _Self_destruct_ptr __right(_My_rope::_S_substring(__old, _M_pos + 1,
1501 _RopeRep* __result = _My_rope::_S_concat(__result_left, __right);