Home | History | Annotate | Download | only in wtf

Lines Matching refs:m_firstChild

58         , m_firstChild(0)
66 NodeType* firstChild() const { return m_firstChild; }
70 bool orphan() const { return !m_parent && !m_next && !m_previous && !m_firstChild && !m_lastChild; }
71 bool hasChildren() const { return m_firstChild; }
94 m_firstChild = newChild;
106 ASSERT(!m_firstChild);
107 m_lastChild = m_firstChild = child;
123 if (m_firstChild == child)
124 m_firstChild = child->next();
154 NodeType* m_firstChild;