Home | History | Annotate | Download | only in animation

Lines Matching defs:blendFunc

51 static inline int blendFunc(const AnimationBase*, int from, int to, double progress)
56 static inline unsigned blendFunc(const AnimationBase*, unsigned from, unsigned to, double progress)
61 static inline double blendFunc(const AnimationBase*, double from, double to, double progress)
66 static inline float blendFunc(const AnimationBase*, float from, float to, double progress)
71 static inline Color blendFunc(const AnimationBase* animation, const StyleColor& from, const StyleColor& to, double progress)
78 static inline Length blendFunc(const AnimationBase*, const Length& from, const Length& to, double progress)
83 static inline LengthSize blendFunc(const AnimationBase* anim, const LengthSize& from, const LengthSize& to, double progress)
85 return LengthSize(blendFunc(anim, from.width(), to.width(), progress),
86 blendFunc(anim, from.height(), to.height(), progress));
89 static inline IntSize blendFunc(const AnimationBase* anim, const IntSize& from, const IntSize& to, double progress)
91 return IntSize(blendFunc(anim, from.width(), to.width(), progress),
92 blendFunc(anim, from.height(), to.height(), progress));
95 static inline ShadowStyle blendFunc(const AnimationBase* anim, ShadowStyle from, ShadowStyle to, double progress)
102 double result = blendFunc(anim, fromVal, toVal, progress);
106 static inline PassOwnPtr<ShadowData> blendFunc(const AnimationBase* anim, const ShadowData* from, const ShadowData* to, double progress)
118 blendFunc(anim, from->style(), to->style(), progress),
122 static inline TransformOperations blendFunc(const AnimationBase* anim, const TransformOperations& from, const TransformOperations& to, double progress)
129 static inline PassRefPtr<ClipPathOperation> blendFunc(const AnimationBase*, ClipPathOperation* from, ClipPathOperation* to, double progress)
144 static inline PassRefPtr<ShapeValue> blendFunc(const AnimationBase*, ShapeValue* from, ShapeValue* to, double progress)
159 static inline PassRefPtr<FilterOperation> blendFunc(const AnimationBase* anim, FilterOperation* fromOp, FilterOperation* toOp, double progress, bool blendToPassthrough = false)
165 static inline FilterOperations blendFunc(const AnimationBase* anim, const FilterOperations& from, const FilterOperations& to, double progress)
177 RefPtr<FilterOperation> blendedOp = toOp ? blendFunc(anim, fromOp.get(), toOp.get(), progress) : (fromOp ? blendFunc(anim, 0, fromOp.get(), progress, true) : 0);
197 static inline EVisibility blendFunc(const AnimationBase* anim, EVisibility from, EVisibility to, double progress)
205 double result = blendFunc(anim, fromVal, toVal, progress);
209 static inline LengthBox blendFunc(const AnimationBase* anim, const LengthBox& from, const LengthBox& to, double progress)
218 LengthBox result(blendFunc(anim, from.top(), to.top(), progress),
219 blendFunc(anim, from.right(), to.right(), progress),
220 blendFunc(anim, from.bottom(), to.bottom(), progress),
221 blendFunc(anim, from.left(), to.left(), progress));
225 static inline SVGLength blendFunc(const AnimationBase*, const SVGLength& from, const SVGLength& to, double progress)
230 static inline Vector<SVGLength> blendFunc(const AnimationBase*, const Vector<SVGLength>& from, const Vector<SVGLength>& to, double progress)
275 static inline PassRefPtr<StyleImage> blendFunc(const AnimationBase* anim, StyleImage* from, StyleImage* to, double progress)
288 static inline NinePieceImage blendFunc(const AnimationBase* anim, const NinePieceImage& from, const NinePieceImage& to, double progress)
301 RefPtr<StyleImage> newContentImage = blendFunc(anim, from.image(), to.image(), progress);
390 (dst->*m_setter)(blendFunc(anim, (a->*PropertyWrapperGetter<T>::m_getter)(), (b->*PropertyWrapperGetter<T>::m_getter)(), progress));
408 (dst->*m_setter)(blendFunc(anim, (a->*PropertyWrapperGetter<T*>::m_getter)(), (b->*PropertyWrapperGetter<T*>::m_getter)(), progress));
464 (dst->*m_setter)(blendFunc(anim, (a->*PropertyWrapperGetter<StyleColor>::m_getter)(), (b->*PropertyWrapperGetter<StyleColor>::m_getter)(), progress));
485 dst->setOpacity(blendFunc(anim, (fromOpacity == 1) ? 0.999999f : fromOpacity, b->opacity(), progress));
500 dst->setTransform(blendFunc(anim, a->transform(), b->transform(), progress));
515 dst->setFilter(blendFunc(anim, a->filter(), b->filter(), progress));
600 OwnPtr<ShadowData> blendedShadow = blendFunc(anim, srcShadow, dstShadow, progress);
643 OwnPtr<ShadowData> blendedShadow = blendFunc(anim, srcShadow, dstShadow, progress);
693 (dst->*m_setter)(blendFunc(anim, fromColor, toColor, progress));
782 (dst->*m_setter)(blendFunc(anim, (a->*FillLayerPropertyWrapperGetter<T>::m_getter)(), (b->*FillLayerPropertyWrapperGetter<T>::m_getter)(), progress));
800 (dst->*m_setter)(blendFunc(anim, (a->*FillLayerPropertyWrapperGetter<T*>::m_getter)(), (b->*FillLayerPropertyWrapperGetter<T*>::m_getter)(), progress));
957 dst->setFlexBasis(blendFunc(anim, a->flexBasis(), b->flexBasis(), progress));
958 dst->setFlexGrow(blendFunc(anim, a->flexGrow(), b->flexGrow(), progress));
959 dst->setFlexShrink(blendFunc(anim, a->flexShrink(), b->flexShrink(), progress));
1014 (dst->*m_setter)(blendFunc(anim, fromColor, toColor, progress));