Lines Matching defs:m_offset
64 , m_offset(0)
70 , m_offset(offset)
76 , m_offset(other.m_offset)
80 unsigned offset() const { return m_offset; }
81 void increment() { m_offset++; }
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;
95 int m_offset;