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

  /external/webkit/Source/WebKit/android/nav/
SelectText.cpp 63 : 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;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
FontWinCE.cpp 73 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;
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, position - xs, includePartialGlyphs))
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext.cpp 44 : 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;
    [all...]

Completed in 30 milliseconds