Home | History | Annotate | Download | only in css

Lines Matching refs:m_current

42     const CSSProperty& operator*() const { return *m_current; }
43 const CSSProperty* operator->() const { return m_current; }
45 bool operator!=(const CSSMutableStyleDeclarationConstIterator& o) { ASSERT(m_decl == o.m_decl); return m_current != o.m_current; }
46 bool operator==(const CSSMutableStyleDeclarationConstIterator& o) { ASSERT(m_decl == o.m_decl); return m_current == o.m_current; }
55 CSSProperty* m_current;
185 , m_current(current)
194 , m_current(o.m_current)
211 m_current = o.m_current;
220 ASSERT(m_current != const_cast<CSSMutableStyleDeclaration*>(m_decl)->m_properties.end());
221 ++m_current;
227 --m_current;