Searched refs:m_textRun (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebKit/android/nav/
H A DSelectText.cpp63 : m_textRun(0)
69 : m_textRun(textRun)
75 : m_textRun(other.m_textRun)
82 bool atEnd() const { return !m_textRun || m_offset >= m_textRun->length(); }
83 UChar current() const { return (*m_textRun)[m_offset]; }
88 return m_offset == other.m_offset && m_textRun == other.m_textRun;
94 const TextRun* m_textRun; member in class:WebCore::TextRunIterator
[all...]
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DFontWinCE.cpp73 TextRunComponent() : m_textRun(0, 0) {}
76 ~TextRunComponent() { m_textRun; }
79 int textLength() const { return m_spaces ? m_spaces : m_textRun.length(); }
81 TextRun m_textRun; member in class:WebCore::TextRunComponent
88 : m_textRun(start, length, parentTextRun.allowTabs(), 0, 0
95 WidthIterator it(&font, m_textRun);
96 it.advance(m_textRun.length(), 0);
101 : m_textRun(0, 0)
230 drawSimpleText(context, comp.m_textRun, pt, from - curPos, std::min(to, curEnd) - curPos);
271 : offsetForPositionForSimpleText(comp.m_textRun, positio
[all...]
/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsContext.cpp44 : m_textRun(0)
50 : m_textRun(textRun)
56 : m_textRun(other.m_textRun)
63 bool atEnd() const { return !m_textRun || m_offset >= m_textRun->length(); }
64 UChar current() const { return (*m_textRun)[m_offset]; }
69 return m_offset == other.m_offset && m_textRun == other.m_textRun;
75 const TextRun* m_textRun; member in class:WebCore::TextRunIterator
[all...]

Completed in 843 milliseconds