Home
last modified time | relevance | path

Searched refs:m_needsSimplifiedNormalFlowLayout (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/rendering/
DRenderObject.h419 …out || m_normalChildNeedsLayout || m_posChildNeedsLayout || m_needsSimplifiedNormalFlowLayout || m… in needsLayout()
422 …out && !m_normalChildNeedsLayout && !m_posChildNeedsLayout && !m_needsSimplifiedNormalFlowLayout; } in needsPositionedMovementLayoutOnly()
424 bool needsSimplifiedNormalFlowLayout() const { return m_needsSimplifiedNormalFlowLayout; } in needsSimplifiedNormalFlowLayout()
852 bool m_needsSimplifiedNormalFlowLayout : 1; variable
943 m_needsSimplifiedNormalFlowLayout = false; in setNeedsLayout()
959 m_needsSimplifiedNormalFlowLayout = false; in setChildNeedsLayout()
979 bool alreadyNeededLayout = m_needsSimplifiedNormalFlowLayout; in setNeedsSimplifiedNormalFlowLayout()
980 m_needsSimplifiedNormalFlowLayout = true; in setNeedsSimplifiedNormalFlowLayout()
1026 if (o->m_needsSimplifiedNormalFlowLayout) in markContainingBlocksForLayout()
1028 o->m_needsSimplifiedNormalFlowLayout = true; in markContainingBlocksForLayout()
DRenderObject.cpp197 , m_needsSimplifiedNormalFlowLayout(false) in RenderObject()