Lines Matching refs:fLength
17 , fLength(that.fLength) in StringSlice()
20 that.fLength = 0; in StringSlice()
34 fLength = 0; in operator =()
44 offset = std::min(fLength, offset); in insert()
45 this->reserve(fLength + length); in insert()
48 if (offset != fLength) { in insert()
49 std::memmove(s + offset + length, s + offset, fLength - offset); in insert()
56 fLength += length; in insert()
61 if (length && offset < fLength) { in remove()
62 length = std::min(length, fLength - offset); in remove()
64 assert(length + offset <= fLength); in remove()
65 if (length + offset < fLength) { in remove()
68 std::memmove(s + offset, s + offset + length, fLength - (length + offset)); in remove()
70 fLength -= length; in remove()
81 assert(fCapacity >= fLength); in realloc()