Searched refs:m_currentCharacter (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DLatin1TextIterator.h35 , m_currentCharacter(currentCharacter)
42 if (m_currentCharacter >= m_lastCharacter)
53 m_currentCharacter += advanceLength;
56 int currentCharacter() const { return m_currentCharacter; }
61 int m_currentCharacter; member in class:blink::Latin1TextIterator
H A DWidthIterator.cpp43 , m_currentCharacter(0)
230 unsigned consumedCharacters = textIterator.currentCharacter() - m_currentCharacter;
231 m_currentCharacter = textIterator.currentCharacter();
243 if (m_currentCharacter >= static_cast<unsigned>(offset))
247 Latin1TextIterator textIterator(m_run.data8(m_currentCharacter), m_currentCharacter, offset, length);
251 SurrogatePairAwareTextIterator textIterator(m_run.data16(m_currentCharacter), m_currentCharacter, offset, length);
259 if (!advance(m_currentCharacter + 1))
H A DWidthIterator.h65 unsigned m_currentCharacter; member in struct:blink::WidthIterator
H A DFont.cpp881 offset = it.m_currentCharacter;
896 offset = it.m_currentCharacter;
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DSurrogatePairAwareTextIterator.h38 if (m_currentCharacter >= m_lastCharacter)
53 m_currentCharacter += advanceLength;
56 int currentCharacter() const { return m_currentCharacter; }
64 int m_currentCharacter; member in class:blink::SurrogatePairAwareTextIterator
H A DSurrogatePairAwareTextIterator.cpp35 , m_currentCharacter(currentCharacter)
63 if (m_currentCharacter + 1 >= m_endCharacter)
80 if (m_currentCharacter + 1 >= m_endCharacter)
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
H A DComplexTextController.cpp46 , m_currentCharacter(0)
416 if (offset <= m_currentCharacter) {
424 m_currentCharacter = offset;
452 if (glyphStartOffset + complexTextRun.stringLocation() >= m_currentCharacter)
459 m_characterInCurrentGlyph = std::min(m_currentCharacter - complexTextRun.stringLocation(), glyphEndOffset) - glyphStartOffset;
473 if (glyphEndOffset + complexTextRun.stringLocation() > m_currentCharacter)
H A DComplexTextController.h155 unsigned m_currentCharacter; member in class:blink::ComplexTextController

Completed in 100 milliseconds