Searched refs:fromOp (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DRotateTransformOperation.cpp40 const RotateTransformOperation* fromOp = static_cast<const RotateTransformOperation*>(from); local
43 if (!fromOp || (fromOp->m_x == 0 && fromOp->m_y == 0 && fromOp->m_z == 1) ||
44 (fromOp->m_x == 0 && fromOp->m_y == 1 && fromOp->m_z == 0) ||
45 (fromOp->m_x == 1 && fromOp
[all...]
H A DScaleTransformOperation.cpp37 const ScaleTransformOperation* fromOp = static_cast<const ScaleTransformOperation*>(from); local
38 double fromX = fromOp ? fromOp->m_x : 1.;
39 double fromY = fromOp ? fromOp->m_y : 1.;
40 double fromZ = fromOp ? fromOp->m_z : 1.;
H A DSkewTransformOperation.cpp35 const SkewTransformOperation* fromOp = static_cast<const SkewTransformOperation*>(from); local
36 double fromAngleX = fromOp ? fromOp->m_angleX : 0;
37 double fromAngleY = fromOp ? fromOp->m_angleY : 0;
H A DTranslateTransformOperation.cpp38 const TranslateTransformOperation* fromOp = static_cast<const TranslateTransformOperation*>(from); local
39 Length fromX = fromOp ? fromOp->m_x : Length(m_x.type());
40 Length fromY = fromOp ? fromOp->m_y : Length(m_y.type());
41 Length fromZ = fromOp ? fromOp->m_z : Length(m_z.type());
H A DPerspectiveTransformOperation.cpp46 const PerspectiveTransformOperation* fromOp = static_cast<const PerspectiveTransformOperation*>(from); local
47 Length fromP = fromOp ? fromOp->m_p : Length(m_p.type());
/external/webkit/Source/WebCore/page/animation/
H A DAnimationBase.cpp167 RefPtr<TransformOperation> fromOp = (i < fromSize) ? from.operations()[i].get() : 0; local
169 RefPtr<TransformOperation> blendedOp = toOp ? toOp->blend(fromOp.get(), progress) : (fromOp ? fromOp->blend(0, progress, true) : 0);
177 result.operations().append(fromOp ? fromOp : identityOp);

Completed in 73 milliseconds