Home | History | Annotate | Download | only in ext

Lines Matching defs:_M_length

47    *                                        _M_length
96 // 1. String really contains _M_length + 1 characters: due to 21.3.4
98 // 2. _M_capacity >= _M_length
113 size_type _M_length;
139 _M_info._M_length = __n;
270 _M_length() const
271 { return _M_rep()->_M_info._M_length; }
344 { _M_erase(size_type(0), _M_length()); }
445 const size_type __requested_cap = _M_info._M_length + __res;
449 if (_M_info._M_length)
450 _S_copy(__r->_M_refdata(), _M_refdata(), _M_info._M_length);
452 __r->_M_set_length(_M_info._M_length);
624 if (__res < _M_length())
625 __res = _M_length();
630 __res - _M_length());
642 const size_type __how_much = _M_length() - __pos - __len1;
644 _Rep* __r = _Rep::_S_create(_M_length() + __len2 - __len1,
664 const size_type __new_size = _M_length() - __n;
665 const size_type __how_much = _M_length() - __pos - __n;