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

  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
RotateTransformOperation.h 32 class PLATFORM_EXPORT RotateTransformOperation : public TransformOperation {
34 static PassRefPtr<RotateTransformOperation> create(double angle, OperationType type)
36 return adoptRef(new RotateTransformOperation(0, 0, 1, angle, type));
39 static PassRefPtr<RotateTransformOperation> create(double x, double y, double z, double angle, OperationType type)
41 return adoptRef(new RotateTransformOperation(x, y, z, angle, type));
58 const RotateTransformOperation* r = static_cast<const RotateTransformOperation*>(&o);
69 RotateTransformOperation(double x, double y, double z, double angle, OperationType type)
RotateTransformOperation.cpp 23 #include "platform/transforms/RotateTransformOperation.h"
33 PassRefPtr<TransformOperation> RotateTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity)
39 return RotateTransformOperation::create(m_x, m_y, m_z, m_angle - m_angle * progress, m_type);
41 const RotateTransformOperation* fromOp = static_cast<const RotateTransformOperation*>(from);
48 return RotateTransformOperation::create(fromOp ? fromOp->m_x : m_x,
54 const RotateTransformOperation* toOp = this;
93 return RotateTransformOperation::create(x, y, z, angle, Rotate3D);
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSTransformValue.h 42 RotateTransformOperation,
CSSParser-in.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/animation/
AnimationTranslationUtilTest.cpp 34 #include "platform/transforms/RotateTransformOperation.h"
144 operations1.operations().append(RotateTransformOperation::create(0, TransformOperation::Rotate));
148 operations2.operations().append(RotateTransformOperation::create(270, TransformOperation::Rotate));
166 operations2.operations().append(RotateTransformOperation::create(270, TransformOperation::Rotate));
181 operations1.operations().append(RotateTransformOperation::create(-330, TransformOperation::Rotate));
185 operations2.operations().append(RotateTransformOperation::create(-320, TransformOperation::Rotate));
200 operations1.operations().append(RotateTransformOperation::create(270, TransformOperation::Rotate));
204 operations2.operations().append(RotateTransformOperation::create(360, TransformOperation::Rotate));
329 ops.operations().append(RotateTransformOperation::create(0.1, 0.2, 0.3, 200000.4, TransformOperation::Rotate3D));
AnimationTranslationUtil.cpp 38 #include "platform/transforms/RotateTransformOperation.h"
87 RotateTransformOperation* transform = static_cast<RotateTransformOperation*>(transformOperations.operations()[j].get());
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
TransformBuilder.cpp 38 #include "platform/transforms/RotateTransformOperation.h"
72 case CSSTransformValue::RotateTransformOperation: return TransformOperation::Rotate;
218 case CSSTransformValue::RotateTransformOperation: {
220 operations.operations().append(RotateTransformOperation::create(0, 0, 1, angle, getTransformOperationType(transformValue->operationType())));
237 operations.operations().append(RotateTransformOperation::create(x, y, z, angle, getTransformOperationType(transformValue->operationType())));
250 operations.operations().append(RotateTransformOperation::create(x, y, z, angle, getTransformOperationType(transformValue->operationType())));
  /external/chromium_org/third_party/WebKit/Source/platform/
blink_platform.target.darwin-arm.mk 401 third_party/WebKit/Source/platform/transforms/RotateTransformOperation.cpp \
    [all...]
blink_platform.target.darwin-mips.mk 400 third_party/WebKit/Source/platform/transforms/RotateTransformOperation.cpp \
    [all...]
blink_platform.target.darwin-x86.mk 400 third_party/WebKit/Source/platform/transforms/RotateTransformOperation.cpp \
    [all...]
blink_platform.target.linux-arm.mk 401 third_party/WebKit/Source/platform/transforms/RotateTransformOperation.cpp \
    [all...]
blink_platform.target.linux-mips.mk 400 third_party/WebKit/Source/platform/transforms/RotateTransformOperation.cpp \
    [all...]
blink_platform.target.linux-x86.mk 400 third_party/WebKit/Source/platform/transforms/RotateTransformOperation.cpp \
    [all...]

Completed in 225 milliseconds