Home | History | Annotate | Download | only in gcc

Lines Matching defs:m_base

63     : m_base (std::forward<Ts> (args)...) {}
65 derived_iterator &operator++ () { ++m_base; return *this; }
68 T operator* () const { return static_cast<T> (*m_base); }
69 T *operator-> () const { return static_cast<T *> (m_base.operator-> ()); }
75 BaseIT m_base;
83 ++m_base;
91 return m_base == other.m_base;
98 return m_base != other.m_base;