HomeSort by relevance Sort by last modified time
    Searched defs:AnimationBase (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/page/animation/
AnimationBase.cpp 30 #include "AnimationBase.h"
74 static inline int blendFunc(const AnimationBase*, int from, int to, double progress)
79 static inline double blendFunc(const AnimationBase*, double from, double to, double progress)
84 static inline float blendFunc(const AnimationBase*, float from, float to, double progress)
89 static inline Color blendFunc(const AnimationBase* anim, const Color& from, const Color& to, double progress)
108 static inline Length blendFunc(const AnimationBase*, const Length& from, const Length& to, double progress)
113 static inline LengthSize blendFunc(const AnimationBase* anim, const LengthSize& from, const LengthSize& to, double progress)
119 static inline IntSize blendFunc(const AnimationBase* anim, const IntSize& from, const IntSize& to, double progress)
125 static inline ShadowStyle blendFunc(const AnimationBase* anim, ShadowStyle from, ShadowStyle to, double progress)
136 static inline ShadowData* blendFunc(const AnimationBase* anim, const ShadowData* from, const ShadowData* to, double progress
    [all...]
AnimationBase.h 38 class AnimationBase;
47 class AnimationBase : public RefCounted<AnimationBase> {
51 AnimationBase(const Animation* transition, RenderObject* renderer, CompositeAnimation* compAnim);
52 virtual ~AnimationBase();
99 updateStateMachine(AnimationBase::AnimationStateInputStartTimeSet, startTime);
166 AnimationBase* next() const { return m_next; }
167 void setNext(AnimationBase* animation) { m_next = animation; }
172 updateStateMachine(AnimationBase::AnimationStateInputStyleAvailable, -1);
206 static bool blendProperties(const AnimationBase* anim, int prop, RenderStyle* dst, const RenderStyle* a, const RenderStyle* b, double progress)
    [all...]

Completed in 3850 milliseconds