OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:offsetForFixedPosition
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderGeometryMap.h
110
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());
RenderGeometryMap.cpp
245
void RenderGeometryMap::push(const RenderObject* renderer, const LayoutSize& offsetFromContainer, bool accumulatingTransform, bool isNonUniform, bool isFixedPosition, bool hasTransform, LayoutSize
offsetForFixedPosition
)
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
)
266
ASSERT(
offsetForFixedPosition
.isZero() || renderer->isRenderView());
271
step.m_offsetForFixedPosition =
offsetForFixedPosition
;
RenderView.cpp
397
LayoutSize
offsetForFixedPosition
;
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
);
[
all
...]
Completed in 36 milliseconds