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

  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
MatrixTransformOperation.h 33 class PLATFORM_EXPORT MatrixTransformOperation : public TransformOperation {
35 static PassRefPtr<MatrixTransformOperation> create(double a, double b, double c, double d, double e, double f)
37 return adoptRef(new MatrixTransformOperation(a, b, c, d, e, f));
40 static PassRefPtr<MatrixTransformOperation> create(const TransformationMatrix& t)
42 return adoptRef(new MatrixTransformOperation(t));
57 const MatrixTransformOperation* m = static_cast<const MatrixTransformOperation*>(&o);
69 MatrixTransformOperation(double a, double b, double c, double d, double e, double f)
79 MatrixTransformOperation(const TransformationMatrix& t)
MatrixTransformOperation.cpp 23 #include "platform/transforms/MatrixTransformOperation.h"
31 PassRefPtr<TransformOperation> MatrixTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity)
41 const MatrixTransformOperation* m = static_cast<const MatrixTransformOperation*>(from);
49 return MatrixTransformOperation::create(toT.a(), toT.b(), toT.c(), toT.d(), toT.e(), toT.f());
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSTransformValue.h 49 MatrixTransformOperation,
CSSComputedStyleDeclaration.cpp 742 transformValue = CSSTransformValue::create(CSSTransformValue::MatrixTransformOperation);
    [all...]
CSSParser-in.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
TransformBuilder.cpp 36 #include "platform/transforms/MatrixTransformOperation.h"
80 case CSSTransformValue::MatrixTransformOperation: return TransformOperation::Matrix;
273 case CSSTransformValue::MatrixTransformOperation: {
282 operations.operations().append(MatrixTransformOperation::create(a, b, c, d, e, f));
  /external/chromium_org/third_party/WebKit/Source/core/platform/animation/
AnimationTranslationUtil.cpp 36 #include "platform/transforms/MatrixTransformOperation.h"
99 MatrixTransformOperation* transform = static_cast<MatrixTransformOperation*>(transformOperations.operations()[j].get());
  /external/chromium_org/third_party/WebKit/Source/platform/
blink_platform.target.darwin-arm.mk 399 third_party/WebKit/Source/platform/transforms/MatrixTransformOperation.cpp \
    [all...]
blink_platform.target.darwin-mips.mk 398 third_party/WebKit/Source/platform/transforms/MatrixTransformOperation.cpp \
    [all...]
blink_platform.target.darwin-x86.mk 398 third_party/WebKit/Source/platform/transforms/MatrixTransformOperation.cpp \
    [all...]
blink_platform.target.linux-arm.mk 399 third_party/WebKit/Source/platform/transforms/MatrixTransformOperation.cpp \
    [all...]
blink_platform.target.linux-mips.mk 398 third_party/WebKit/Source/platform/transforms/MatrixTransformOperation.cpp \
    [all...]
blink_platform.target.linux-x86.mk 398 third_party/WebKit/Source/platform/transforms/MatrixTransformOperation.cpp \
    [all...]

Completed in 62 milliseconds