Lines Matching refs:__result

381   _RopeLeaf* __result;
387 __result = _S_new_RopeLeaf(__new_data, __old_len + __len, __r->get_allocator());
391 return __result;
432 _RopeLeaf* __result = _S_leaf_concat_char_iter(__r, __iter, __len);
433 //_STLP_ASSERT(__result->_M_ref_count == 1)
434 return __result;
444 _RopeConcatenation* __result =
446 size_t __depth = __result->_M_depth;
449 if (__depth > 20 && (__result->_M_size._M_data < 1000 ||
454 __balanced = _S_balance(__result);
455 // _STLP_ASSERT(__result == __balanced ||
456 // 1 == __result->_M_ref_count &&
458 __result->_M_unref_nonnil();
461 _RopeConcatenation).deallocate(__result,1)))
468 return __result;
476 _RopeRep* __result;
485 __result = _S_leaf_concat_char_iter((_RopeLeaf*)__r, __s, __slen);
486 // _STLP_ASSERT(1 == __result->_M_ref_count)
487 return __result;
497 __result = _S_tree_concat(__left, __nright);
500 // _STLP_ASSERT(1 == __result->_M_ref_count)
501 return __result;
508 __result = _S_tree_concat(__r, __nright);
511 // _STLP_ASSERT(1 == __result->_M_ref_count)
512 return __result;
519 _RopeRep* __result;
568 __result = _S_tree_concat(__r, __right);
571 // _STLP_ASSERT(1 == __result->_M_ref_count)
572 return __result;
645 _RopeRep* __result;
656 __result = _S_concat_rep(__left_result, __right_result);
657 // _STLP_ASSERT(1 == __result->_M_ref_count)
658 return __result;
664 _RopeLeaf* __result;
671 __result = _S_RopeLeaf_from_unowned_char_ptr(__section, __result_len,
673 return __result;
683 _RopeSubstring* __result = _S_new_RopeSubstring(__old->_M_base,
687 return __result;
826 bool __result;
830 __result = __c(__buffer, __len);
834 return __result;
1030 _RopeRep* __result = 0;
1042 _Self_destruct_ptr __old(__result);
1043 __result = _S_concat_rep(__forest[__i], __result);
1052 if (__result->_M_depth > _RopeRep::_S_max_rope_depth) {
1055 return(__result);
1154 _CharT __result;
1156 (*(__f->_M_fn))(__i, 1, &__result);
1157 return __result;
1286 _RopeRep* __result =
1288 // _STLP_ASSERT(1 <= __result->_M_ref_count)
1290 _M_root->_M_tree_ptr._M_data = __result;
1319 _CharT* __result = _STLP_CREATE_ALLOCATOR(allocator_type,(const allocator_type&)_M_tree_ptr, _CharT).allocate(__s + 1);
1320 _S_flatten(_M_tree_ptr._M_data, __result);
1321 _S_construct_null(__result + __s);
1323 __result));
1331 return __result;
1345 _CharT* __result = _M_tree_ptr.allocate(_S_rounded_up_size(__s));
1346 _S_flatten(_M_tree_ptr._M_data, __result);
1347 _S_construct_null(__result + __s);
1349 _M_tree_ptr._M_data = _S_new_RopeLeaf(__result, __s, _M_tree_ptr);
1350 return __result;