Home | History | Annotate | Download | only in ext

Lines Matching defs:_M_length

49    *                                        _M_length
98 // 1. String really contains _M_length + 1 characters: due to 21.3.4
100 // 2. _M_capacity >= _M_length
115 size_type _M_length;
141 _M_info._M_length = __n;
284 _M_length() const
285 { return _M_rep()->_M_info._M_length; }
358 { _M_erase(size_type(0), _M_length()); }
459 const size_type __requested_cap = _M_info._M_length + __res;
463 if (_M_info._M_length)
464 _S_copy(__r->_M_refdata(), _M_refdata(), _M_info._M_length);
466 __r->_M_set_length(_M_info._M_length);
638 if (__res < _M_length())
639 __res = _M_length();
644 __res - _M_length());
656 const size_type __how_much = _M_length() - __pos - __len1;
658 _Rep* __r = _Rep::_S_create(_M_length() + __len2 - __len1,
678 const size_type __new_size = _M_length() - __n;
679 const size_type __how_much = _M_length() - __pos - __n;