Home | History | Annotate | Download | only in rendering

Lines Matching refs:m_previous

43     , m_previous(0)
85 ASSERT(!m_next && !m_previous);
97 m_previous = toRenderLazyBlock(predecessor);
98 m_next = m_previous->m_next;
99 m_previous->m_next = this;
101 m_next->m_previous = this;
105 if (!m_previous) {
109 m_next->m_previous = this;
114 ASSERT(!m_next || m_next->m_previous == this);
115 ASSERT(!m_previous || m_previous->m_attached);
116 ASSERT(!m_previous || m_previous->m_next == this);
122 ASSERT(!m_previous || m_previous->m_attached);
125 if (m_previous)
126 m_previous->m_next = m_next;
130 m_next->m_previous = m_previous;
133 m_previous = 0;