/external/chromium_org/third_party/WebKit/Source/platform/transforms/ |
RotateTransformOperation.h | 62 virtual void apply(TransformationMatrix& transform, const FloatSize& /*borderBoxSize*/) const
|
ScaleTransformOperation.h | 61 virtual void apply(TransformationMatrix& transform, const FloatSize&) const
|
TransformOperation.h | 29 #include "platform/transforms/TransformationMatrix.h" 63 virtual void apply(TransformationMatrix&, const FloatSize& borderBoxSize) const = 0;
|
TransformOperations.h | 46 void apply(const FloatSize& sz, TransformationMatrix& t) const
|
AffineTransform.h | 30 #include "platform/transforms/TransformationMatrix.h" 42 class TransformationMatrix; 112 TransformationMatrix toTransformationMatrix() const;
|
TranslateTransformOperation.h | 67 virtual void apply(TransformationMatrix& transform, const FloatSize& borderBoxSize) const
|
AffineTransform.cpp | 344 TransformationMatrix AffineTransform::toTransformationMatrix() const 346 return TransformationMatrix(m_transform[0], m_transform[1], m_transform[2],
|
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/ |
AnimationTranslationUtil.cpp | 41 #include "platform/transforms/TransformationMatrix.h" 100 TransformationMatrix m = transform->matrix(); 101 webTransformOperations->appendMatrix(TransformationMatrix::toSkMatrix44(m)); 106 TransformationMatrix m = transform->matrix(); 107 webTransformOperations->appendMatrix(TransformationMatrix::toSkMatrix44(m)); 116 TransformationMatrix m; 118 webTransformOperations->appendMatrix(TransformationMatrix::toSkMatrix44(m));
|
AnimationTranslationUtilTest.cpp | 218 TransformationMatrix matrix1; 223 TransformationMatrix matrix2;
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/custom/ |
CustomFilterRenderer.cpp | 42 #include "platform/transforms/TransformationMatrix.h" 46 static void orthogonalProjectionMatrix(TransformationMatrix& matrix, float left, float right, float bottom, float top) 183 TransformationMatrix matrix; 246 TransformationMatrix projectionMatrix;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderLayer.h | 79 class TransformationMatrix; 321 TransformationMatrix* transform() const { return m_transform.get(); } 325 TransformationMatrix currentTransform(RenderStyle::ApplyTransformOrigin = RenderStyle::IncludeTransformOrigin) const; 326 TransformationMatrix renderableTransform(PaintBehavior) const; 331 TransformationMatrix perspectiveTransform() const; [all...] |
RenderLayer.cpp | 92 #include "platform/transforms/TransformationMatrix.h" 552 m_transform = adoptPtr(new TransformationMatrix); 572 TransformationMatrix RenderLayer::currentTransform(RenderStyle::ApplyTransformOrigin applyOrigin) const 575 return TransformationMatrix(); 579 TransformationMatrix currTransform; 589 TransformationMatrix currTransform; 598 TransformationMatrix RenderLayer::renderableTransform(PaintBehavior paintBehavior) const 601 return TransformationMatrix(); 604 TransformationMatrix matrix = *m_transform; [all...] |
RenderGeometryMap.cpp | 262 void RenderGeometryMap::push(const RenderObject* renderer, const TransformationMatrix& t, bool accumulatingTransform, bool isNonUniform, bool isFixedPosition, bool hasTransform, LayoutSize offsetForFixedPosition) 274 step.m_transform = adoptPtr(new TransformationMatrix(t));
|
CompositedLayerMapping.h | 34 #include "platform/transforms/TransformationMatrix.h" 170 virtual bool getCurrentTransform(const GraphicsLayer*, TransformationMatrix&) const OVERRIDE;
|
CompositedLayerMapping.cpp | 253 TransformationMatrix t; 695 TransformationMatrix t = owningLayer()->perspectiveTransform(); 699 m_graphicsLayer->setChildrenTransform(TransformationMatrix()); 705 clipLayer->setChildrenTransform(TransformationMatrix()); 707 m_graphicsLayer->setChildrenTransform(TransformationMatrix()); [all...] |
RenderView.cpp | 369 TransformationMatrix t; 417 TransformationMatrix t; 433 TransformationMatrix t; [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/geometry/ |
FloatPoint.cpp | 35 #include "platform/transforms/TransformationMatrix.h" 100 FloatPoint FloatPoint::matrixTransform(const TransformationMatrix& transform) const
|
FloatPoint.h | 50 class TransformationMatrix; 148 FloatPoint matrixTransform(const TransformationMatrix&) const;
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorLayerTreeAgent.cpp | 48 #include "platform/transforms/TransformationMatrix.h" 95 const TransformationMatrix& transform = graphicsLayer->transform(); 97 TransformationMatrix::FloatMatrix4 flattenedMatrix;
|
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
AnimatableValueTestHelper.cpp | 166 TransformationMatrix matrix;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
SVGRenderingContext.cpp | 224 if (TransformationMatrix* layerTransform = layer->transform())
|
SVGRenderSupport.cpp | 94 TransformationMatrix matrix(object->localToParentTransform());
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGGraphicsElement.cpp | 111 TransformationMatrix transform;
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
GraphicsLayer.cpp | 842 void GraphicsLayer::setTransform(const TransformationMatrix& transform) 845 platformLayer()->setTransform(TransformationMatrix::toSkMatrix44(m_transform)); 848 void GraphicsLayer::setChildrenTransform(const TransformationMatrix& transform) 851 platformLayer()->setSublayerTransform(TransformationMatrix::toSkMatrix44(m_childrenTransform)); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
TransformBuilder.cpp | 41 #include "platform/transforms/TransformationMatrix.h" 288 TransformationMatrix matrix(toCSSPrimitiveValue(transformValue->itemWithoutBoundsCheck(0))->getDoubleValue(),
|