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

  /external/webkit/Source/WebCore/platform/graphics/transforms/
ScaleTransformOperation.h 32 class ScaleTransformOperation : public TransformOperation {
34 static PassRefPtr<ScaleTransformOperation> create(double sx, double sy, OperationType type)
36 return adoptRef(new ScaleTransformOperation(sx, sy, 1, type));
39 static PassRefPtr<ScaleTransformOperation> create(double sx, double sy, double sz, OperationType type)
41 return adoptRef(new ScaleTransformOperation(sx, sy, sz, type));
58 const ScaleTransformOperation* s = static_cast<const ScaleTransformOperation*>(&o);
70 ScaleTransformOperation(double sx, double sy, double sz, OperationType type)
ScaleTransformOperation.cpp 23 #include "ScaleTransformOperation.h"
27 PassRefPtr<TransformOperation> ScaleTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity)
33 return ScaleTransformOperation::create(m_x + (1. - m_x) * progress,
37 const ScaleTransformOperation* fromOp = static_cast<const ScaleTransformOperation*>(from);
41 return ScaleTransformOperation::create(fromX + (m_x - fromX) * progress,
  /external/webkit/Source/WebCore/css/
WebKitCSSTransformValue.h 44 ScaleTransformOperation,
WebKitCSSTransformValue.cpp 61 case ScaleTransformOperation:
CSSStyleSelector.cpp 83 #include "ScaleTransformOperation.h"
    [all...]
CSSParser.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/ca/
GraphicsLayerCA.cpp 38 #include "ScaleTransformOperation.h"
113 value = transformOp ? narrowPrecisionToFloat(static_cast<const ScaleTransformOperation*>(transformOp)->x()) : 1;
116 value = transformOp ? narrowPrecisionToFloat(static_cast<const ScaleTransformOperation*>(transformOp)->y()) : 1;
119 value = transformOp ? narrowPrecisionToFloat(static_cast<const ScaleTransformOperation*>(transformOp)->z()) : 1;
140 value.setX(transformOp ? narrowPrecisionToFloat(static_cast<const ScaleTransformOperation*>(transformOp)->x()) : 1);
141 value.setY(transformOp ? narrowPrecisionToFloat(static_cast<const ScaleTransformOperation*>(transformOp)->y()) : 1);
142 value.setZ(transformOp ? narrowPrecisionToFloat(static_cast<const ScaleTransformOperation*>(transformOp)->z()) : 1);
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderLayer.cpp 84 #include "ScaleTransformOperation.h"
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
RenderStyle.cpp 33 #include "ScaleTransformOperation.h"
725 transform.operations().append(ScaleTransformOperation::create(scale, scale, ScaleTransformOperation::SCALE));
    [all...]
  /external/webkit/Source/WebCore/
Android.mk 742 platform/graphics/transforms/ScaleTransformOperation.cpp \
    [all...]

Completed in 1014 milliseconds