Searched refs:usableLength (Results 1 – 1 of 1) sorted by relevance
1797 size_t usableLength = min(m_buffer.capacity() - oldLength, length); in append() local1798 ASSERT(usableLength); in append()1799 m_buffer.resize(oldLength + usableLength); in append()1801 StringImpl::copyChars(destination, characters, usableLength); in append()1802 foldQuoteMarksAndSoftHyphens(destination, usableLength); in append()1803 m_numberOfCharactersJustAppended = usableLength; in append()1827 …size_t usableLength = min(m_buffer.capacity() - m_prefixLength, length - wordBoundaryContextStart); in prependContext() local1828 m_buffer.prepend(characters + length - usableLength, usableLength); in prependContext()1829 m_prefixLength += usableLength; in prependContext()