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

/macosx-10.10/WebCore-7600.1.25/platform/graphics/transforms/
H A DRotateTransformOperation.cpp47 const RotateTransformOperation* fromOp = toRotateTransformOperation(from); local
50 if (!fromOp || (fromOp->m_x == 0 && fromOp->m_y == 0 && fromOp->m_z == 1) ||
51 (fromOp->m_x == 0 && fromOp->m_y == 1 && fromOp->m_z == 0) ||
52 (fromOp->m_x == 1 && fromOp
[all...]
H A DScaleTransformOperation.cpp47 const ScaleTransformOperation* fromOp = toScaleTransformOperation(from); local
48 double fromX = fromOp ? fromOp->m_x : 1.0;
49 double fromY = fromOp ? fromOp->m_y : 1.0;
50 double fromZ = fromOp ? fromOp->m_z : 1.0;
H A DSkewTransformOperation.cpp45 const SkewTransformOperation* fromOp = toSkewTransformOperation(from); local
46 double fromAngleX = fromOp ? fromOp->m_angleX : 0;
47 double fromAngleY = fromOp ? fromOp->m_angleY : 0;
H A DTranslateTransformOperation.cpp45 const TranslateTransformOperation* fromOp = toTranslateTransformOperation(from); local
46 Length fromX = fromOp ? fromOp->m_x : zeroLength;
47 Length fromY = fromOp ? fromOp->m_y : zeroLength;
48 Length fromZ = fromOp ? fromOp->m_z : zeroLength;
H A DPerspectiveTransformOperation.cpp53 const PerspectiveTransformOperation* fromOp = toPerspectiveTransformOperation(from); local
54 Length fromP = fromOp ? fromOp->m_p : Length(m_p.type());
/macosx-10.10/WebCore-7600.1.25/platform/graphics/filters/
H A DFilterOperation.cpp78 const BasicColorMatrixFilterOperation* fromOp = toBasicColorMatrixFilterOperation(from); local
79 double fromAmount = fromOp ? fromOp->amount() : passthroughAmount();
114 const BasicComponentTransferFilterOperation* fromOp = toBasicComponentTransferFilterOperation(from); local
115 double fromAmount = fromOp ? fromOp->amount() : passthroughAmount();
162 const BlurFilterOperation* fromOp = toBlurFilterOperation(from); local
163 Length fromLength = fromOp ? fromOp->m_stdDeviation : Length(lengthType);
186 const DropShadowFilterOperation* fromOp local
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DGraphicsLayerAnimation.cpp31 static inline PassRefPtr<FilterOperation> blendFunc(FilterOperation* fromOp, FilterOperation* toOp, double progress, const FloatSize& size, bool blendToPassthrough = false) argument
35 return toOp->blend(fromOp, progress, LayoutSize(size), blendToPassthrough);
37 return toOp->blend(fromOp, progress, blendToPassthrough);
60 RefPtr<FilterOperation> fromOp = (i < fromSize) ? from.operations()[i].get() : 0; local
62 RefPtr<FilterOperation> blendedOp = toOp ? blendFunc(fromOp.get(), toOp.get(), progress, boxSize) : (fromOp ? blendFunc(0, fromOp.get(), progress, boxSize, true) : 0);
70 result.operations().append(fromOp ? fromOp : identityOp);
/macosx-10.10/WebCore-7600.1.25/page/animation/
H A DCSSPropertyAnimation.cpp165 static inline PassRefPtr<FilterOperation> blendFunc(const AnimationBase* anim, FilterOperation* fromOp, FilterOperation* toOp, double progress, bool blendToPassthrough = false) argument
170 return toOp->blend(fromOp, progress, size, blendToPassthrough);
172 return toOp->blend(fromOp, progress, blendToPassthrough);
182 RefPtr<FilterOperation> fromOp = (i < fromSize) ? from.operations()[i].get() : 0; local
184 RefPtr<FilterOperation> blendedOp = toOp ? blendFunc(anim, fromOp.get(), toOp.get(), progress) : (fromOp ? blendFunc(anim, 0, fromOp.get(), progress, true) : 0);
192 result.operations().append(fromOp ? fromOp : identityOp);

Completed in 143 milliseconds