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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderGeometryMap.h 74 void push(const RenderObject*, const LayoutSize&, bool accumulatingTransform = false, bool isNonUniform = false, bool isFixedPosition = false, bool hasTransform = false, LayoutSize offsetForFixedPosition = LayoutSize());
75 void push(const RenderObject*, const TransformationMatrix&, bool accumulatingTransform = false, bool isNonUniform = false, bool isFixedPosition = false, bool hasTransform = false, LayoutSize offsetForFixedPosition = LayoutSize());
RenderGeometryMap.cpp 246 void RenderGeometryMap::push(const RenderObject* renderer, const LayoutSize& offsetFromContainer, bool accumulatingTransform, bool isNonUniform, bool isFixedPosition, bool hasTransform, LayoutSize offsetForFixedPosition)
252 ASSERT(offsetForFixedPosition.isZero() || renderer->isRenderView());
258 step.m_offsetForFixedPosition = offsetForFixedPosition;
263 void RenderGeometryMap::push(const RenderObject* renderer, const TransformationMatrix& t, bool accumulatingTransform, bool isNonUniform, bool isFixedPosition, bool hasTransform, LayoutSize offsetForFixedPosition)
267 ASSERT(offsetForFixedPosition.isZero() || renderer->isRenderView());
272 step.m_offsetForFixedPosition = offsetForFixedPosition;
RenderView.cpp 264 LayoutSize offsetForFixedPosition;
269 offsetForFixedPosition = m_frameView->scrollOffsetForFixedPosition();
286 geometryMap.push(this, t, false, false, false, true, offsetForFixedPosition);
288 geometryMap.push(this, offset, false, false, false, false, offsetForFixedPosition);
    [all...]

Completed in 45 milliseconds