Home | History | Annotate | Download | only in rendering

Lines Matching defs:layoutState

26 #include "LayoutState.h"
127 // Returns true if layoutState should be used for its cached offset and clip.
129 LayoutState* layoutState() const { return m_layoutState; }
131 // Suspends the LayoutState optimization. Used under transforms that cannot be represented by
132 // LayoutState (common in SVG) and when manipulating the render tree during layout in ways
134 // Note that even when disabled, LayoutState is still used to store layoutDelta.
192 // We push LayoutState even if layoutState is disabled because it stores layoutDelta too.
194 m_layoutState = new (renderArena()) LayoutState(m_layoutState, renderer, offset, pageHeight, pageHeightChanged, colInfo);
202 LayoutState* state = m_layoutState;
246 LayoutState* m_layoutState;
269 // Stack-based class to assist with LayoutState push/pop
327 bool m_disabled : 1; // true if the offset and clip part of layoutState is disabled