Searched refs:usableLength (Results 1 – 1 of 1) sorted by relevance
2002 size_t usableLength = min(m_buffer.capacity() - oldLength, length); in append() local2003 ASSERT(usableLength); in append()2004 m_buffer.append(characters, usableLength); in append()2005 foldQuoteMarksAndSoftHyphens(m_buffer.data() + oldLength, usableLength); in append()2006 return usableLength; in append()2030 …size_t usableLength = min(m_buffer.capacity() - m_prefixLength, length - wordBoundaryContextStart); in prependContext() local2031 m_buffer.prepend(characters + length - usableLength, usableLength); in prependContext()2032 m_prefixLength += usableLength; in prependContext()