Home | History | Annotate | Download | only in ext

Lines Matching refs:__result

434       _RopeLeaf* __result;
441 __result = _S_new_RopeLeaf(__new_data, __old_len + __len,
450 return __result;
482 _RopeLeaf* __result = _S_leaf_concat_char_iter(__r, __iter, __len);
483 return __result;
496 _RopeConcatenation* __result = _S_new_RopeConcatenation(__left, __right,
499 size_t __depth = __result->_M_depth;
502 && (__result->_M_size < 1000
509 __balanced = _S_balance(__result);
510 __result->_M_unref_nonnil();
514 _C_deallocate(__result,1);
524 return __result;
532 _RopeRep* __result;
544 __result = _S_leaf_concat_char_iter((_RopeLeaf*)__r, __s, __slen);
545 return __result;
559 { __result = _S_tree_concat(__left, __nright); }
566 return __result;
574 __result = _S_tree_concat(__r, __nright);
582 return __result;
591 _RopeRep* __result;
607 __result = _S_destr_leaf_concat_char_iter((_RopeLeaf*)__r, __s,
609 return __result;
639 { __result = _S_tree_concat(__r, __right); }
646 return __result;
746 _RopeRep* __result;
759 __result = _S_concat(__left_result, __right_result);
760 return __result;
765 _RopeLeaf* __result;
774 __result = _S_new_RopeLeaf(__section, __result_len,
776 __result->_M_c_string = 0; // Not eos terminated.
779 __result = __STL_ROPE_FROM_UNOWNED_CHAR_PTR(__l->_M_data + __start,
784 return __result;
796 _RopeSubstring* __result =
801 return __result;
962 bool __result;
968 __result = __c(__buffer, __len);
976 return __result;
1206 _RopeRep* __result = 0;
1223 _Self_destruct_ptr __old(__result);
1225 __result = _S_concat(__forest[__i], __result);
1239 if (__result->_M_depth > int(__detail::_S_max_rope_depth))
1241 return(__result);
1354 _CharT __result;
1356 (*(__f->_M_fn))(__i, 1, &__result);
1357 return __result;
1502 _RopeRep* __result = _My_rope::_S_concat(__result_left, __right);
1506 _M_root->_M_tree_ptr = __result;
1531 rope<_CharT,_Alloc> __result;
1587 __result = __base_rope;
1589 __result = power(__base_rope, __exponent,
1593 __result += __remainder_rope;
1596 __result = __remainder_rope;
1598 this->_M_tree_ptr = __result._M_tree_ptr;
1618 __GC_CONST _CharT* __result = this->_M_tree_ptr->_M_c_string;
1619 if (0 == __result)
1622 __result = this->_Data_allocate(__s + 1);
1623 _S_flatten(this->_M_tree_ptr, __result);
1624 __result[__s] = _S_eos((_CharT*)0);
1625 this->_M_tree_ptr->_M_c_string = __result;
1628 return(__result);
1645 _CharT* __result = this->_Data_allocate(_S_rounded_up_size(__s));
1646 _S_flatten(this->_M_tree_ptr, __result);
1647 __result[__s] = _S_eos((_CharT*)0);
1649 this->_M_tree_ptr = _S_new_RopeLeaf(__result, __s,
1651 return(__result);