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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderGeometryMap.cpp 29 #include "core/platform/graphics/transforms/TransformState.h"
49 void RenderGeometryMap::mapToContainer(TransformState& transformState, const RenderLayerModelObject* container) const
53 m_mapping.last().m_renderer->mapLocalToContainer(container, transformState, ApplyContainerFlip | m_mapCoordinatesFlags);
54 transformState.flatten();
85 transformState.applyTransform(*currentStep.m_transform.get());
89 transformState.move(currentStep.m_offset.width(), currentStep.m_offset.height());
91 TransformState::TransformAccumulation accumulate = currentStep.m_accumulatingTransform ? TransformState::AccumulateTransform : TransformState::FlattenTransform
    [all...]
RenderView.cpp 34 #include "core/platform/graphics/transforms/TransformState.h"
302 void RenderView::mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState& transformState, MapCoordinatesFlags mode, bool* wasFixed) const
309 transformState.applyTransform(t);
313 transformState.move(m_frameView->scrollOffsetForFixedPosition());
320 transformState.move(-frame()->view()->scrollOffset());
322 transformState.move(toLayoutSize(toRenderBox(parentDocRenderer)->contentBoxRect().location()));
323 parentDocRenderer->mapLocalToContainer(repaintContainer, transformState, mode, wasFixed);
354 void RenderView::mapAbsoluteToLocalPoint(MapCoordinatesFlags mode, TransformState& transformState) cons
    [all...]
RenderObject.cpp 52 #include "core/platform/graphics/transforms/TransformState.h"
    [all...]
RenderFlowThread.cpp 36 #include "core/platform/graphics/transforms/TransformState.h"
518 RenderRegion* RenderFlowThread::mapFromFlowToRegion(TransformState& transformState) const
523 LayoutRect boxRect = transformState.mappedQuad().enclosingBoundingBox();
538 transformState.move(renderRegion->contentBoxRect().location() - flippedRegionRect.location());
    [all...]
RenderInline.cpp 32 #include "core/platform/graphics/transforms/TransformState.h"
    [all...]
RenderLayer.cpp     [all...]
RenderLayer.h     [all...]
RenderBox.cpp 43 #include "core/platform/graphics/transforms/TransformState.h"
    [all...]
RenderBoxModelObject.cpp 36 #include "core/platform/graphics/transforms/TransformState.h"
    [all...]
RenderBlock.cpp 42 #include "core/platform/graphics/transforms/TransformState.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGInline.cpp 88 void RenderSVGInline::mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState& transformState, MapCoordinatesFlags, bool* wasFixed) const
90 SVGRenderSupport::mapLocalToContainer(this, repaintContainer, transformState, wasFixed);
RenderSVGForeignObject.cpp 192 void RenderSVGForeignObject::mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState& transformState, MapCoordinatesFlags, bool* wasFixed) const
194 SVGRenderSupport::mapLocalToContainer(this, repaintContainer, transformState, wasFixed);
SVGRenderSupport.cpp 29 #include "core/platform/graphics/transforms/TransformState.h"
68 void SVGRenderSupport::mapLocalToContainer(const RenderObject* object, const RenderLayerModelObject* repaintContainer, TransformState& transformState, bool* wasFixed)
70 transformState.applyTransform(object->localToParentTransform());
78 transformState.applyTransform(toRenderSVGRoot(parent)->localToBorderBoxTransform());
81 parent->mapLocalToContainer(repaintContainer, transformState, mode, wasFixed);
RenderSVGModelObject.cpp 57 void RenderSVGModelObject::mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState& transformState, MapCoordinatesFlags, bool* wasFixed) const
59 SVGRenderSupport::mapLocalToContainer(this, repaintContainer, transformState, wasFixed);
RenderSVGRoot.cpp 401 void RenderSVGRoot::mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState& transformState, MapCoordinatesFlags mode, bool* wasFixed) const
406 RenderReplaced::mapLocalToContainer(repaintContainer, transformState, mode | ApplyContainerFlip, wasFixed);
RenderSVGText.cpp 36 #include "core/platform/graphics/transforms/TransformState.h"
112 void RenderSVGText::mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState& transformState, MapCoordinatesFlags, bool* wasFixed) const
114 SVGRenderSupport::mapLocalToContainer(this, repaintContainer, transformState, wasFixed);
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.cpp 47 #include "core/platform/graphics/transforms/TransformState.h"
352 TransformState transformState(TransformState::ApplyTransformDirection, localQuad);
354 layerIter->key->renderer()->mapLocalToContainer(compositedLayer->renderer(), transformState, flags);
355 transformState.flatten();
356 LayoutRect compositorRect = LayoutRect(transformState.lastPlanarQuad().boundingBox());

Completed in 411 milliseconds