Home | History | Annotate | Download | only in text

Lines Matching refs:m_offset

40         , m_offset(0)
46 , m_offset(offset)
52 , m_offset(other.m_offset)
56 unsigned offset() const { return m_offset; }
57 void increment() { m_offset++; }
58 bool atEnd() const { return !m_textRun || m_offset >= m_textRun->length(); }
59 UChar current() const { return (*m_textRun)[m_offset]; }
65 return m_offset == other.m_offset && m_textRun == other.m_textRun;
72 int m_offset;