Home
last modified time | relevance | path

Searched refs:usableLength (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/editing/
DTextIterator.cpp1797 size_t usableLength = min(m_buffer.capacity() - oldLength, length); in append() local
1798 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() local
1828 m_buffer.prepend(characters + length - usableLength, usableLength); in prependContext()
1829 m_prefixLength += usableLength; in prependContext()