Lines Matching refs:__left

1400         static _RopeRep* _S_concat(_RopeRep* __left, _RopeRep* __right);
1439 _RopeRep* __left, _RopeRep* __right,
1447 return new(__space) _RopeConcatenation(__left, __right, __a);
1511 _S_tree_concat(_RopeRep* __left, _RopeRep* __right);
1576 static _RopeRep* _S_concat_and_set_balanced(_RopeRep* __left,
1579 _RopeRep* __result = _S_concat(__left, __right);
1717 _RopeRep* __left =
1720 _M_tree_ptr = _S_concat(__left, _M_tree_ptr);
1722 _S_unref(__left);
1724 __STL_UNWIND(_S_unref(__left))
1862 operator+ __STL_NULL_TMPL_ARGS (const rope<_CharT,_Alloc>& __left,
1866 operator+ __STL_NULL_TMPL_ARGS (const rope<_CharT,_Alloc>& __left,
1870 operator+ __STL_NULL_TMPL_ARGS (const rope<_CharT,_Alloc>& __left,
1955 _Self_destruct_ptr __left(
1965 __result = _S_concat(__left, __right);
1967 _Self_destruct_ptr __left_result(_S_concat(__left, __r));
1990 _Self_destruct_ptr __left(_S_substring(_M_tree_ptr, 0, __p));
1993 _S_concat_char_iter(__left, __i, __n));
2396 operator+ (const rope<_CharT,_Alloc>& __left,
2400 __stl_assert(__left.get_allocator() == __right.get_allocator());
2403 rope<_CharT,_Alloc>::_S_concat(__left._M_tree_ptr, __right._M_tree_ptr));
2411 operator+= (rope<_CharT,_Alloc>& __left,
2414 __left.append(__right);
2415 return __left;
2421 operator+ (const rope<_CharT,_Alloc>& __left,
2426 __left._M_tree_ptr, __right, __rlen));
2432 operator+= (rope<_CharT,_Alloc>& __left,
2434 __left.append(__right);
2435 return __left;
2441 operator+ (const rope<_CharT,_Alloc>& __left, _CharT __right) {
2444 __left._M_tree_ptr, &__right, 1));
2450 operator+= (rope<_CharT,_Alloc>& __left, _CharT __right) {
2451 __left.append(__right);
2452 return __left;
2457 operator< (const rope<_CharT,_Alloc>& __left,
2459 return __left.compare(__right) < 0;
2464 operator== (const rope<_CharT,_Alloc>& __left,
2466 return __left.compare(__right) == 0;