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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderView.h 101 // layoutDelta is used transiently during layout to store how far an object has moved from its
103 // If we're doing a full repaint m_layoutState will be 0, but in that case layoutDelta doesn't matter.
104 LayoutSize layoutDelta() const
107 return m_layoutState ? m_layoutState->layoutDelta() : LayoutSize();
122 return (delta.width() == m_layoutState->layoutDelta().width() || m_layoutState->layoutDeltaXSaturated()) && (delta.height() == m_layoutState->layoutDelta().height() || m_layoutState->layoutDeltaYSaturated());
238 // store layoutDelta.
LayoutState.h 76 const LayoutSize& layoutDelta() const { return m_layoutDelta; }
LayoutState.cpp 87 LayoutSize deltaSize = RuntimeEnabledFeatures::repaintAfterLayoutEnabled() ? LayoutSize() : renderer.view()->layoutDelta();
RenderReplaced.cpp 614 // FIXME: layoutDelta needs to be applied in parts before/after transforms and
616 r.move(v->layoutDelta());
RenderTableCell.cpp 366 // FIXME: layoutDelta needs to be applied in parts before/after transforms and
368 r.move(v->layoutDelta());
    [all...]
RenderBlockFlow.cpp 515 LayoutSize oldLayoutDelta = RuntimeEnabledFeatures::repaintAfterLayoutEnabled() ? LayoutSize() : view()->layoutDelta();
    [all...]
RenderObject.cpp     [all...]
RenderBox.cpp     [all...]

Completed in 203 milliseconds