HomeSort by relevance Sort by last modified time
    Searched refs:m_textIterator (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.h 305 bool atEnd() const { return m_textIterator.atEnd(); }
307 int length() const { return m_textIterator.length() - m_runOffset; }
308 UChar characterAt(unsigned index) const { return m_textIterator.characterAt(m_runOffset + index); }
311 void appendTextTo(BufferType& output) { m_textIterator.appendTextTo(output, m_runOffset); }
323 TextIterator m_textIterator;
332 bool atEnd() const { return m_textIterator.atEnd(); }
341 SimplifiedBackwardsTextIterator m_textIterator;
351 bool atEnd() const { return !m_didLookAhead && m_textIterator.atEnd(); }
366 TextIterator m_textIterator;
TextIterator.cpp     [all...]

Completed in 47 milliseconds