Home | History | Annotate | Download | only in editing

Lines Matching defs:ConstIterator

20     class ConstIterator {
22 ConstIterator(): m_filter(nullptr), m_index(0) { }
28 ConstIterator& operator++()
39 bool operator==(const ConstIterator& other)
43 bool operator!=(const ConstIterator& other) { return !operator==(other); }
48 ConstIterator(CompositionUnderlineRangeFilter* filter, size_t index)
57 ConstIterator begin() { return ConstIterator(this, seekValidIndex(0)); }
58 const ConstIterator& end() { return m_theEnd; }
61 friend class ConstIterator;
73 const ConstIterator m_theEnd;