Home | History | Annotate | Download | only in include

Lines Matching refs:mLength

113     size_type length() const { return mLength; }
114 size_type size() const { return mLength; }
290 iterator end() {return iterator(mData + mLength);}
291 const_iterator end() const {return const_iterator(mData + mLength);}
317 size_type mLength; // len of the string excl. null-terminator.
348 size_type new_len = mLength + dist;
349 if (new_len <= mLength) {
356 std::copy(first, last, mData + mLength);
357 mLength = new_len;
358 mData[mLength] = '\0';