Home
last modified time | relevance | path

Searched refs:OperationType (Results 1 – 15 of 15) sorted by relevance

/external/webkit/WebCore/platform/graphics/transforms/
DScaleTransformOperation.h34 static PassRefPtr<ScaleTransformOperation> create(double sx, double sy, OperationType type) in create()
39 …tic PassRefPtr<ScaleTransformOperation> create(double sx, double sy, double sz, OperationType type) in create()
51 virtual OperationType getOperationType() const { return m_type; } in getOperationType()
70 ScaleTransformOperation(double sx, double sy, double sz, OperationType type) in ScaleTransformOperation()
82 OperationType m_type;
DRotateTransformOperation.h34 static PassRefPtr<RotateTransformOperation> create(double angle, OperationType type) in create()
39 …tr<RotateTransformOperation> create(double x, double y, double z, double angle, OperationType type) in create()
49 virtual OperationType getOperationType() const { return m_type; } in getOperationType()
68 RotateTransformOperation(double x, double y, double z, double angle, OperationType type) in RotateTransformOperation()
82 OperationType m_type;
DTranslateTransformOperation.h35 …sRefPtr<TranslateTransformOperation> create(const Length& tx, const Length& ty, OperationType type) in create()
40 …ransformOperation> create(const Length& tx, const Length& ty, const Length& tz, OperationType type) in create()
52 virtual OperationType getOperationType() const { return m_type; } in getOperationType()
71 …TranslateTransformOperation(const Length& tx, const Length& ty, const Length& tz, OperationType ty… in TranslateTransformOperation()
83 OperationType m_type;
DSkewTransformOperation.h34 … static PassRefPtr<SkewTransformOperation> create(double angleX, double angleY, OperationType type) in create()
41 virtual OperationType getOperationType() const { return m_type; } in getOperationType()
60 SkewTransformOperation(double angleX, double angleY, OperationType type) in SkewTransformOperation()
69 OperationType m_type;
DTransformOperation.h39 enum OperationType { enum
66 virtual OperationType getOperationType() const = 0;
71 OperationType opType = getOperationType(); in is3DOperation()
DIdentityTransformOperation.h41 virtual OperationType getOperationType() const { return IDENTITY; } in getOperationType()
DPerspectiveTransformOperation.h42 virtual OperationType getOperationType() const { return PERSPECTIVE; } in getOperationType()
DMatrix3DTransformOperation.h43 virtual OperationType getOperationType() const { return MATRIX_3D; } in getOperationType()
DMatrixTransformOperation.h48 virtual OperationType getOperationType() const { return MATRIX; } in getOperationType()
/external/webkit/WebCore/platform/graphics/mac/
DGraphicsLayerCA.h157 …Animation*, CABasicAnimation*, int functionIndex, TransformOperation::OperationType, bool isMatrix…
158 …mation*, CAKeyframeAnimation*, int functionIndex, TransformOperation::OperationType, bool isMatrix…
DGraphicsLayerCA.mm149 …ctionValue(const TransformOperation* transformOp, TransformOperation::OperationType transformType,…
204 static NSString* getValueFunctionNameForTransformOperation(TransformOperation::OperationType transf…
1809 …TransformOperation::OperationType transformOp = isMatrixAnimation ? TransformOperation::MATRIX_3D …
1947 …, CABasicAnimation* basicAnim, int functionIndex, TransformOperation::OperationType transformOp, b…
1992 …yframeAnimation* keyframeAnim, int functionIndex, TransformOperation::OperationType transformOpTyp…
/external/webkit/WebCore/platform/graphics/
DGraphicsLayer.h339 typedef Vector<TransformOperation::OperationType> TransformOperationList;
DGraphicsLayer.cpp357 TransformOperation::OperationType type = firstVal->operations().at(j)->getOperationType(); in fetchTransformOperationList()
/external/webkit/WebCore/rendering/style/
DRenderStyle.cpp664 …TransformOperation::OperationType type = rareNonInheritedData->m_transform->m_operations.operation… in applyTransform()
/external/webkit/WebCore/css/
DCSSStyleSelector.cpp6098 static TransformOperation::OperationType getTransformOperationType(WebKitCSSTransformValue::Transfo… in getTransformOperationType()