Home | History | Annotate | Download | only in rendering

Lines Matching refs:m_next

57     , m_next(0)
90 if (head->m_previous->m_next) {
93 while (tail->m_next)
94 tail = tail->m_next;
95 tail->m_next = head->m_previous->m_next;
96 ASSERT(tail->m_next->m_previous == head->m_previous);
97 tail->m_next->m_previous = tail;
98 tail = tail->m_next; // This marks the splicing point here there may be a depth discontinuity
100 head->m_previous->m_next = head;
125 head = head->m_next;
303 RenderQuote* quoteAfter = removedQuote->m_next;
304 removedQuote->m_next = 0;
306 lastQuoteBefore->m_next = quoteAfter;
315 quoteAfter = quoteAfter->m_next;