Home | History | Annotate | Download | only in rendering

Lines Matching refs:m_previous

39     , m_previous(0)
48 ASSERT(!m_next && !m_previous);
304 ASSERT(!m_next && !m_previous);
314 // Skip unattached predecessors to avoid having stale m_previous pointers
318 m_previous = toRenderQuote(predecessor);
319 m_next = m_previous->m_next;
320 m_previous->m_next = this;
322 m_next->m_previous = this;
326 if (!m_previous) {
330 m_next->m_previous = this;
338 ASSERT(!m_next || m_next->m_previous == this);
339 ASSERT(!m_previous || m_previous->m_attached);
340 ASSERT(!m_previous || m_previous->m_next == this);
346 ASSERT(!m_previous || m_previous->m_attached);
349 if (m_previous)
350 m_previous->m_next = m_next;
354 m_next->m_previous = m_previous;
361 m_previous = 0;
370 if (m_previous) {
371 m_depth = m_previous->m_depth;
372 switch (m_previous->m_type) {