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

  /external/webkit/Source/WebCore/page/animation/
AnimationControllerPrivate.h 44 class AnimationBase;
92 void addToAnimationsWaitingForStyle(AnimationBase*);
93 void removeFromAnimationsWaitingForStyle(AnimationBase*);
95 void addToAnimationsWaitingForStartTimeResponse(AnimationBase*, bool willGetResponse);
96 void removeFromAnimationsWaitingForStartTimeResponse(AnimationBase*);
98 void animationWillBeRemoved(AnimationBase*);
129 typedef HashSet<RefPtr<AnimationBase> > WaitingAnimationsSet;
AnimationBase.h 40 class AnimationBase;
49 class AnimationBase : public RefCounted<AnimationBase> {
53 AnimationBase(const Animation* transition, RenderObject* renderer, CompositeAnimation* compAnim);
54 virtual ~AnimationBase() { }
103 updateStateMachine(AnimationBase::AnimationStateInputStartTimeSet, startTime);
180 updateStateMachine(AnimationBase::AnimationStateInputStyleAvailable, -1);
218 static bool blendProperties(const AnimationBase* anim, int prop, RenderStyle* dst, const RenderStyle* a, const RenderStyle* b, double progress);
AnimationBase.cpp 30 #include "AnimationBase.h"
80 static inline int blendFunc(const AnimationBase*, int from, int to, double progress)
85 static inline double blendFunc(const AnimationBase*, double from, double to, double progress)
90 static inline float blendFunc(const AnimationBase*, float from, float to, double progress)
95 static inline Color blendFunc(const AnimationBase* anim, const Color& from, const Color& to, double progress)
114 static inline Length blendFunc(const AnimationBase*, const Length& from, const Length& to, double progress)
119 static inline LengthSize blendFunc(const AnimationBase* anim, const LengthSize& from, const LengthSize& to, double progress)
125 static inline IntSize blendFunc(const AnimationBase* anim, const IntSize& from, const IntSize& to, double progress)
131 static inline ShadowStyle blendFunc(const AnimationBase* anim, ShadowStyle from, ShadowStyle to, double progress)
142 static inline ShadowData* blendFunc(const AnimationBase* anim, const ShadowData* from, const ShadowData* to, double progress
    [all...]
AnimationController.h 37 class AnimationBase;
ImplicitAnimation.h 32 #include "AnimationBase.h"
39 class ImplicitAnimation : public AnimationBase {
KeyframeAnimation.h 32 #include "AnimationBase.h"
42 class KeyframeAnimation : public AnimationBase {
AnimationController.cpp 32 #include "AnimationBase.h"
368 void AnimationControllerPrivate::addToAnimationsWaitingForStyle(AnimationBase* animation)
376 void AnimationControllerPrivate::removeFromAnimationsWaitingForStyle(AnimationBase* animationToRemove)
392 void AnimationControllerPrivate::addToAnimationsWaitingForStartTimeResponse(AnimationBase* animation, bool willGetResponse)
418 void AnimationControllerPrivate::removeFromAnimationsWaitingForStartTimeResponse(AnimationBase* animationToRemove)
439 void AnimationControllerPrivate::animationWillBeRemoved(AnimationBase* animation)
581 return AnimationBase::animationOfPropertyIsAccelerated(property);
ImplicitAnimation.cpp 44 : AnimationBase(transition, renderer, compAnim)
288 double t = AnimationBase::timeToNextService();
CompositeAnimation.cpp 106 for (int propertyIndex = 0; propertyIndex < AnimationBase::getNumProperties(); ++propertyIndex) {
110 prop = AnimationBase::getPropertyAtIndex(propertyIndex, isShorthand);
147 if (AnimationBase::animationOfPropertyIsAccelerated(prop) && implAnim->isAccelerated()) {
160 equal = !isActiveTransition || AnimationBase::propertiesEqual(prop, fromStyle, targetStyle);
529 HashSet<int> shorthandProperties = AnimationBase::animatableShorthandsAffectingProperty(property);
KeyframeAnimation.cpp 47 : AnimationBase(animation, renderer, compAnim)
85 // FIXME: share this code with AnimationBase::progress().
436 double t = AnimationBase::timeToNextService();
  /external/webkit/Source/WebCore/
Android.mk 532 page/animation/AnimationBase.cpp \
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
RenderStyle.h 109 friend class AnimationBase; // Used by CSS animations. We can't allow them to animate based off visited colors.
    [all...]

Completed in 214 milliseconds