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

  /external/webkit/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/WebCore/css/
WebKitCSSTransformValue.h 44 ScaleTransformOperation,
WebKitCSSTransformValue.cpp 61 case ScaleTransformOperation:
CSSStyleSelector.cpp 79 #include "ScaleTransformOperation.h"
    [all...]
CSSParser.cpp     [all...]
  /external/webkit/WebCore/platform/graphics/android/
GraphicsLayerAndroid.cpp 35 #include "ScaleTransformOperation.h"
721 ScaleTransformOperation* scaleOperation = (ScaleTransformOperation*) op;
728 ScaleTransformOperation* scaleOperation = (ScaleTransformOperation*) op;
735 ScaleTransformOperation* scaleOperation = (ScaleTransformOperation*) op;
742 ScaleTransformOperation* scaleOperation = (ScaleTransformOperation*) op;
  /external/webkit/WebCore/platform/graphics/mac/
GraphicsLayerCA.mm 44 #import "ScaleTransformOperation.h"
157 return [NSNumber numberWithDouble:transformOp ? static_cast<const ScaleTransformOperation*>(transformOp)->x() : 1];
159 return [NSNumber numberWithDouble:transformOp ? static_cast<const ScaleTransformOperation*>(transformOp)->y() : 1];
161 return [NSNumber numberWithDouble:transformOp ? static_cast<const ScaleTransformOperation*>(transformOp)->z() : 1];
171 [NSNumber numberWithDouble:transformOp ? static_cast<const ScaleTransformOperation*>(transformOp)->x() : 1],
172 [NSNumber numberWithDouble:transformOp ? static_cast<const ScaleTransformOperation*>(transformOp)->y() : 1],
173 [NSNumber numberWithDouble:transformOp ? static_cast<const ScaleTransformOperation*>(transformOp)->z() : 1],
    [all...]
  /external/webkit/WebCore/rendering/
RenderLayer.cpp 78 #include "ScaleTransformOperation.h"
    [all...]
  /external/webkit/WebCore/
Android.mk 503 platform/graphics/transforms/ScaleTransformOperation.cpp \

Completed in 986 milliseconds