Home | History | Annotate | Download | only in ext

Lines Matching refs:__end

230 	_S_construct_aux(_InIterator __beg, _InIterator __end,
234 return _S_construct(__beg, __end, __a, _Tag());
241 _S_construct_aux(_Integer __beg, _Integer __end,
244 __end, __a); }
252 _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a)
255 return _S_construct_aux(__beg, __end, __a, _Integral());
261 _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a,
268 _S_construct(_FwdIterator __beg, _FwdIterator __end, const _Alloc& __a,
326 __rc_string_base(_InputIterator __beg, _InputIterator __end,
489 __rc_string_base(_InputIterator __beg, _InputIterator __end,
491 : _M_dataplus(__a, _S_construct(__beg, __end, __a)) { }
511 _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a,
514 if (__beg == __end && __a == _Alloc())
520 while (__beg != __end && __len < sizeof(__buf) / sizeof(_CharT))
529 while (__beg != __end)
556 _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a,
559 if (__beg == __end && __a == _Alloc())
563 if (__is_null_pointer(__beg) && __beg != __end)
568 __end));
572 { __rc_string_base::_S_copy_chars(__r->_M_refdata(), __beg, __end); }