Home | History | Annotate | Download | only in rendering

Lines Matching refs:m_firstChild

42     , m_firstChild(0)
51 if (m_parent || m_previousSibling || m_nextSibling || m_firstChild || m_lastChild) {
56 if (m_parent->m_firstChild == this)
57 m_parent->m_firstChild = m_nextSibling;
74 if (m_firstChild) {
76 for (CounterNode* child = m_firstChild; child; ) {
117 if (CounterNode* next = m_firstChild)
152 ASSERT(m_parent->m_firstChild == this);
259 next = m_firstChild;
260 m_firstChild = newChild;
275 if (!newChild->m_firstChild || newChild->m_hasResetType) {
286 CounterNode* first = newChild->m_firstChild;
317 newChild->m_firstChild = 0;
327 ASSERT(!oldChild->m_firstChild);
340 ASSERT(m_firstChild == oldChild);
341 m_firstChild = next;