Home | History | Annotate | Download | only in wtf

Lines Matching refs:m_lastChild

59         , m_lastChild(0)
67 NodeType* lastChild() const { return m_lastChild; }
70 bool orphan() const { return !m_parent && !m_next && !m_previous && !m_firstChild && !m_lastChild; }
105 if (!m_lastChild) {
107 m_lastChild = m_firstChild = child;
111 ASSERT(!m_lastChild->m_next);
112 NodeType* oldLast = m_lastChild;
113 m_lastChild = child;
125 if (m_lastChild == child)
126 m_lastChild = child->previous();
155 NodeType* m_lastChild;