HomeSort by relevance Sort by last modified time
    Searched defs:__r (Results 126 - 127 of 127) sorted by null

1 2 3 4 56

  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/include/ext/
ropeimpl.h 316 _Rope_iterator(rope<_CharT, _Alloc>& __r, size_t __pos)
317 : _Rope_iterator_base<_CharT,_Alloc>(__r._M_tree_ptr, __pos),
318 _M_root_rope(&__r)
427 _S_leaf_concat_char_iter(_RopeLeaf* __r, const _CharT* __iter, size_t __len)
429 size_t __old_len = __r->_M_size;
434 uninitialized_copy_n(__r->_M_data, __old_len, __new_data);
440 __r->_M_get_allocator());
445 __r->_M_get_allocator());
456 _S_destr_leaf_concat_char_iter(_RopeLeaf* __r, const _CharT* __iter,
459 if (__r->_M_ref_count > 1
1440 _RopeLeaf* __r = (_RopeLeaf*) __right; local
1461 _RopeLeaf* __r = (_RopeLeaf*) __right; local
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_rope.c 59 _Rope_iterator<_CharT, _Alloc>::_Rope_iterator(rope<_CharT,_Alloc>* __r, size_t __pos)
60 : _Rope_iterator_base<_CharT,_Alloc>(__r->_M_tree_ptr._M_data, __pos),
61 _M_root_rope(__r) { _RopeRep::_S_ref(this->_M_root); }
64 _Rope_iterator<_CharT, _Alloc>::_Rope_iterator(rope<_CharT,_Alloc>& __r, size_t __pos):
65 _Rope_iterator_base<_CharT,_Alloc>(__r._M_tree_ptr._M_data, __pos),
66 _M_root_rope(&__r) {
68 _RopeRep::_S_ref(this->_M_root); if (!(__r.empty()))_S_setcache(*this);
71 _RopeRep::_S_ref(this->_M_root); if (!(__r.empty()))_S_setcache(*__x);
378 _RopeLeaf* __r, const _CharT* __iter, size_t __len) {
379 size_t __old_len = __r->_M_size._M_data
1239 const _RopeLeaf* __r = __STATIC_CAST(const _RopeLeaf*, __right); local
1254 const _RopeLeaf* __r = __STATIC_CAST(const _RopeLeaf*, __right); local
    [all...]

Completed in 2179 milliseconds

1 2 3 4 56