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

  /external/webkit/WebCore/rendering/
RenderView.h 114 // If we're doing a full repaint m_layoutState will be 0, but in that case layoutDelta doesn't matter.
117 return m_layoutState ? m_layoutState->m_layoutDelta : IntSize();
121 if (m_layoutState)
122 m_layoutState->m_layoutDelta += delta;
132 m_layoutState = new (renderArena()) LayoutState(m_layoutState, renderer, offset);
141 LayoutState* state = m_layoutState;
142 m_layoutState = state->m_next;
149 bool layoutStateEnabled() const { return m_layoutStateDisableCount == 0 && m_layoutState; }
    [all...]
RenderView.cpp 55 , m_layoutState(0)
127 ASSERT(!m_layoutState);
131 m_layoutState = &state;
143 ASSERT(m_layoutState == &state);
144 m_layoutState = 0;
689 ASSERT(m_layoutState == 0);
691 m_layoutState = new (renderArena()) LayoutState(root);

Completed in 15 milliseconds