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

  /external/webkit/Source/WebCore/platform/graphics/transforms/
RotateTransformOperation.h 32 class 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));
59 const RotateTransformOperation* r = static_cast<const RotateTransformOperation*>(&o);
71 RotateTransformOperation(double x, double y, double z, double angle, OperationType type)
RotateTransformOperation.cpp 23 #include "RotateTransformOperation.h"
32 PassRefPtr<TransformOperation> RotateTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity)
38 return RotateTransformOperation::create(m_x, m_y, m_z, m_angle - m_angle * progress, m_type);
40 const RotateTransformOperation* fromOp = static_cast<const RotateTransformOperation*>(from);
47 return RotateTransformOperation::create(fromOp ? fromOp->m_x : m_x,
53 const RotateTransformOperation* toOp = this;
92 return RotateTransformOperation::create(x, y, z, angle, ROTATE_3D);
  /external/webkit/Source/WebCore/css/
WebKitCSSTransformValue.h 43 RotateTransformOperation,
WebKitCSSTransformValue.cpp 58 case RotateTransformOperation:
CSSStyleSelector.cpp 82 #include "RotateTransformOperation.h"
    [all...]
CSSParser.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsLayer.cpp 33 #include "RotateTransformOperation.h"
377 lastRotAngle = static_cast<RotateTransformOperation*>(firstVal->operations().at(j).get())->angle();
384 double rotAngle = val->operations().isEmpty() ? 0 : (static_cast<RotateTransformOperation*>(val->operations().at(j).get())->angle());
  /external/webkit/Source/WebCore/
Android.mk 726 platform/graphics/transforms/RotateTransformOperation.cpp \
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/ca/
GraphicsLayerCA.cpp 37 #include "RotateTransformOperation.h"
110 value = transformOp ? narrowPrecisionToFloat(deg2rad(static_cast<const RotateTransformOperation*>(transformOp)->angle())) : 0;
    [all...]

Completed in 248 milliseconds