HomeSort by relevance Sort by last modified time
    Searched refs:m_previous (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLazyBlock.cpp 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)
    [all...]
RenderQuote.cpp 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
    [all...]
RenderQuote.h 58 RenderQuote* m_previous; member in class:WebCore::FINAL
RenderLazyBlock.h 53 RenderLazyBlock* previous() const { return m_previous; }
72 RenderLazyBlock* m_previous; member in class:WebCore::FINAL
RenderLayer.h 327 RenderLayer* previousSibling() const { return m_previous; }
1180 RenderLayer* m_previous; member in class:WebCore::RenderLayer
    [all...]
RenderObject.h 159 RenderObject* previousSibling() const { return m_previous; }
261 void setPreviousSibling(RenderObject* previous) { m_previous = previous; }
1084 RenderObject* m_previous; member in class:WebCore::RenderObject
    [all...]