Searched defs:m_layoutState (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DRenderView.h108 // If we're doing a full repaint m_layoutState will be 0, but in that case layoutDelta doesn't matter.
111 return m_layoutState ? m_layoutState->m_layoutDelta : IntSize();
115 if (m_layoutState)
116 m_layoutState->m_layoutDelta += delta;
128 bool layoutStateEnabled() const { return m_layoutStateDisableCount == 0 && m_layoutState; }
129 LayoutState* layoutState() const { return m_layoutState; }
193 if (!doingFullRepaint() || renderer->hasColumns() || m_layoutState->isPaginated()) {
194 m_layoutState = new (renderArena()) LayoutState(m_layoutState, rendere
246 LayoutState* m_layoutState; member in class:WebCore::RenderView
[all...]

Completed in 48 milliseconds