Searched refs:offsetForFixedPosition (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderGeometryMap.cpp245 void RenderGeometryMap::push(const RenderObject* renderer, const LayoutSize& offsetFromContainer, bool accumulatingTransform, bool isNonUniform, bool isFixedPosition, bool hasTransform, LayoutSize offsetForFixedPosition) argument
251 ASSERT(offsetForFixedPosition.isZero() || renderer->isRenderView());
257 step.m_offsetForFixedPosition = offsetForFixedPosition;
262 void RenderGeometryMap::push(const RenderObject* renderer, const TransformationMatrix& t, bool accumulatingTransform, bool isNonUniform, bool isFixedPosition, bool hasTransform, LayoutSize offsetForFixedPosition) argument
266 ASSERT(offsetForFixedPosition.isZero() || renderer->isRenderView());
271 step.m_offsetForFixedPosition = offsetForFixedPosition;
H A DRenderGeometryMap.h110 void push(const RenderObject*, const LayoutSize&, bool accumulatingTransform = false, bool isNonUniform = false, bool isFixedPosition = false, bool hasTransform = false, LayoutSize offsetForFixedPosition = LayoutSize());
111 void push(const RenderObject*, const TransformationMatrix&, bool accumulatingTransform = false, bool isNonUniform = false, bool isFixedPosition = false, bool hasTransform = false, LayoutSize offsetForFixedPosition = LayoutSize());
H A DRenderView.cpp397 LayoutSize offsetForFixedPosition; local
402 offsetForFixedPosition = m_frameView->scrollOffsetForFixedPosition();
419 geometryMap.push(this, t, false, false, false, true, offsetForFixedPosition);
421 geometryMap.push(this, offset, false, false, false, false, offsetForFixedPosition);

Completed in 2220 milliseconds