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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderView.h 114 return m_layoutState ? m_layoutState->m_layoutDelta : LayoutSize();
119 m_layoutState->m_layoutDelta += delta;
121 m_layoutState->m_layoutDeltaXSaturated |= m_layoutState->m_layoutDelta.width() == LayoutUnit::max() || m_layoutState->m_layoutDelta.width() == LayoutUnit::min();
122 m_layoutState->m_layoutDeltaYSaturated |= m_layoutState->m_layoutDelta.height() == LayoutUnit::max() || m_layoutState->m_layoutDelta.height() == LayoutUnit::min();
132 return (delta.width() == m_layoutState->m_layoutDelta.width() || m_layoutState->m_layoutDeltaXSaturated) && (delta.height() == m_layoutState->m_layoutDelta.height() || m_layoutState->m_layoutDeltaYSaturated);
LayoutState.h 127 LayoutSize m_layoutDelta;
LayoutState.cpp 117 m_layoutDelta = m_next->m_layoutDelta;

Completed in 2630 milliseconds