Lines Matching defs:__right

490     _S_tree_concat(_RopeRep* __left, _RopeRep* __right)
493 _RopeConcatenation* __result = _S_new_RopeConcatenation(__left, __right,
548 _RopeLeaf* __right =
550 if (__right->_M_size + __slen <= size_t(_S_copy_max))
554 _S_leaf_concat_char_iter((_RopeLeaf*)__right, __s, __slen);
613 _RopeLeaf* __right = (_RopeLeaf*)(((_RopeConcatenation*)
615 if (__detail::_S_leaf == __right->_M_tag
616 && __right->_M_size + __slen <= size_t(_S_copy_max))
619 _S_destr_leaf_concat_char_iter(__right, __s, __slen);
620 if (__right == __new_right)
623 __right->_M_unref_nonnil();
635 _RopeRep* __right =
639 { __result = _S_tree_concat(__r, __right); }
643 _S_unref(__right);
653 _S_concat(_RopeRep* __left, _RopeRep* __right)
658 _S_ref(__right);
659 return __right;
661 if (0 == __right)
666 if (__detail::_S_leaf == __right->_M_tag)
670 if (__right->_M_size + __left->_M_size <= size_t(_S_copy_max))
672 ((_RopeLeaf*)__right)->_M_data,
673 __right->_M_size);
682 + __right->_M_size <= size_t(_S_copy_max))
687 __right)->
689 __right->_M_size);
703 __right->_M_ref_nonnil();
705 { return(_S_tree_concat(__left, __right)); }
709 _S_unref(__right);
746 _RopeRep* __right = __c->_M_right;
753 return _S_substring(__right, __start - __left_len,
758 _Self_destruct_ptr __right_result(_S_substring(__right, 0,
946 _RopeRep* __right = __conc->_M_right;
948 if (!_S_apply_to_pieces(__c, __right,
1089 _RopeRep* __right = __c->_M_right;
1091 return _S_flatten(__right, __rest);
1130 _RopeRep* __right = __c->_M_right;
1143 _S_dump(__right, __indent + 2);
1431 _S_compare (const _RopeRep* __left, const _RopeRep* __right)
1436 if (0 == __right)
1441 __right_len = __right->_M_size;
1445 if (__detail::_S_leaf == __right->_M_tag)
1447 _RopeLeaf* __r = (_RopeLeaf*) __right;
1455 const_iterator __rstart(__right, 0);
1456 const_iterator __rend(__right, __right_len);
1466 if (__detail::_S_leaf == __right->_M_tag)
1468 _RopeLeaf* __r = (_RopeLeaf*) __right;
1475 const_iterator __rstart(__right, 0);
1476 const_iterator __rend(__right, __right_len);
1501 _Self_destruct_ptr __right(_My_rope::_S_substring(__old, _M_pos + 1,
1507 _RopeRep* __result = _My_rope::_S_concat(__result_left, __right);