Home | History | Annotate | Download | only in bits

Lines Matching full:_s_construct

78       _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a,
124 _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a,
134 __throw_logic_error(__N("basic_string::_S_construct NULL not valid"));
154 _S_construct(size_type __n, _CharT __c, const _Alloc& __a)
180 : _M_dataplus(_S_construct(size_type(), _CharT(), __a), __a)
186 : _M_dataplus(_S_construct(__str._M_data()
197 : _M_dataplus(_S_construct(__str._M_data()
208 : _M_dataplus(_S_construct(__s, __s + __n, __a), __a)
215 : _M_dataplus(_S_construct(__s, __s ? __s + traits_type::length(__s) :
222 : _M_dataplus(_S_construct(__n, __c, __a), __a)
230 : _M_dataplus(_S_construct(__beg, __end, __a), __a)
237 : _M_dataplus(_S_construct(__l.begin(), __l.end(), __a), __a)