Searched refs:m_textRun (Results 1 – 3 of 3) sorted by relevance
/external/webkit/Source/WebKit/android/nav/ |
D | SelectText.cpp | 63 : m_textRun(0) in TextRunIterator() 69 : m_textRun(textRun) in TextRunIterator() 75 : m_textRun(other.m_textRun) in TextRunIterator() 82 bool atEnd() const { return !m_textRun || m_offset >= m_textRun->length(); } in atEnd() 83 UChar current() const { return (*m_textRun)[m_offset]; } in current() 88 return m_offset == other.m_offset && m_textRun == other.m_textRun; in operator ==() 94 const TextRun* m_textRun; member in WebCore::TextRunIterator
|
/external/webkit/Source/WebCore/platform/graphics/wince/ |
D | FontWinCE.cpp | 73 TextRunComponent() : m_textRun(0, 0) {} in TextRunComponent() 76 ~TextRunComponent() { m_textRun; } in ~TextRunComponent() 79 int textLength() const { return m_spaces ? m_spaces : m_textRun.length(); } in textLength() 81 TextRun m_textRun; member in WebCore::TextRunComponent 88 : m_textRun(start, length, parentTextRun.allowTabs(), 0, 0 in TextRunComponent() 95 WidthIterator it(&font, m_textRun); in TextRunComponent() 96 it.advance(m_textRun.length(), 0); in TextRunComponent() 101 : m_textRun(0, 0) in TextRunComponent() 230 … drawSimpleText(context, comp.m_textRun, pt, from - curPos, std::min(to, curEnd) - curPos); in drawComplexText() 271 … : offsetForPositionForSimpleText(comp.m_textRun, position - xs, includePartialGlyphs)); in offsetForPositionForComplexText() [all …]
|
/external/webkit/Source/WebCore/platform/graphics/ |
D | GraphicsContext.cpp | 44 : m_textRun(0) in TextRunIterator() 50 : m_textRun(textRun) in TextRunIterator() 56 : m_textRun(other.m_textRun) in TextRunIterator() 63 bool atEnd() const { return !m_textRun || m_offset >= m_textRun->length(); } in atEnd() 64 UChar current() const { return (*m_textRun)[m_offset]; } in current() 69 return m_offset == other.m_offset && m_textRun == other.m_textRun; in operator ==() 75 const TextRun* m_textRun; member in WebCore::TextRunIterator
|