Home
last modified time | relevance | path

Searched refs:__left (Results 1 – 4 of 4) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_rope.c174 _RopeRep* __left = __c->_M_left; in _S_setcache() local
175 size_t __left_len = __left->_M_size._M_data; in _S_setcache()
183 __curr_rope = __left; in _S_setcache()
443 rope<_CharT,_Alloc>::_S_tree_concat (_RopeRep* __left, _RopeRep* __right) { in _S_tree_concat() argument
445 _S_new_RopeConcatenation(__left, __right, __left->get_allocator()); in _S_tree_concat()
448 _STLP_ASSERT(__left->get_allocator() == __right->get_allocator()) in _S_tree_concat()
460 _STLP_UNWIND((_STLP_CREATE_ALLOCATOR(allocator_type,(allocator_type&)__left->_M_size, in _S_tree_concat()
493 _RopeRep* __left = ((_RopeConcatenation*)__r)->_M_left; in _S_concat_char_iter() local
495 __left->_M_ref_nonnil(); in _S_concat_char_iter()
497 __result = _S_tree_concat(__left, __nright); in _S_concat_char_iter()
[all …]
D_rope.h1178 static _RopeRep* _S_concat_rep(_RopeRep* __left, _RopeRep* __right);
1209 static _RopeConcatenation* _S_new_RopeConcatenation(_RopeRep* __left, _RopeRep* __right,
1213 return new(__space) _RopeConcatenation(__left, __right, __a);
1255 _S_tree_concat(_RopeRep* __left, _RopeRep* __right);
1317 static _RopeRep* _S_concat_and_set_balanced(_RopeRep* __left,
1319 _RopeRep* __result = _S_concat_rep(__left, __right);
1521 _RopeRep* __left =
1524 _M_tree_ptr._M_data = _S_concat_rep(__left, _M_tree_ptr._M_data);
1526 _S_unref(__left);
1528 _STLP_UNWIND(_S_unref(__left))
[all …]
D_string_io.c44 const bool __left = (__os.flags() & __ostream::left) != 0; variable
52 if (!__left)
57 if (__left)
D_algo.c1401 …_ForwardIter __left = _STLP_PRIV __lower_bound(__first, __middle, __val, __comp1, __comp2, __dist); in __equal_range() local
1404 if (__comp1(*__left, __val)) { in __equal_range()
1405 _STLP_VERBOSE_ASSERT(!__comp2(__val, *__left), _StlMsg_INVALID_STRICT_WEAK_PREDICATE) in __equal_range()
1406 return pair<_ForwardIter, _ForwardIter>(__left, __left); in __equal_range()
1410 return pair<_ForwardIter, _ForwardIter>(__left, __right); in __equal_range()