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

  /external/webkit/Source/WebCore/page/animation/
ImplicitAnimation.h 41 static PassRefPtr<ImplicitAnimation> create(const Animation* animation, int animatingProperty, RenderObject* renderer, CompositeAnimation* compositeAnimation, RenderStyle* fromStyle)
43 return adoptRef(new ImplicitAnimation(animation, animatingProperty, renderer, compositeAnimation, fromStyle));
54 virtual void animate(CompositeAnimation*, RenderObject*, const RenderStyle* currentStyle, RenderStyle* targetStyle, RefPtr<RenderStyle>& animatedStyle);
81 ImplicitAnimation(const Animation*, int animatingProperty, RenderObject*, CompositeAnimation*, RenderStyle* fromStyle);
KeyframeAnimation.h 44 static PassRefPtr<KeyframeAnimation> create(const Animation* animation, RenderObject* renderer, int index, CompositeAnimation* compositeAnimation, RenderStyle* unanimatedStyle)
46 return adoptRef(new KeyframeAnimation(animation, renderer, index, compositeAnimation, unanimatedStyle));
49 virtual void animate(CompositeAnimation*, RenderObject*, const RenderStyle* currentStyle, RenderStyle* targetStyle, RefPtr<RenderStyle>& animatedStyle);
82 KeyframeAnimation(const Animation* animation, RenderObject*, int index, CompositeAnimation*, RenderStyle* unanimatedStyle);
AnimationBase.h 42 class CompositeAnimation;
50 friend class CompositeAnimation;
53 AnimationBase(const Animation* transition, RenderObject* renderer, CompositeAnimation* compAnim);
131 virtual void animate(CompositeAnimation*, RenderObject*, const RenderStyle* /*currentStyle*/, RenderStyle* /*targetStyle*/, RefPtr<RenderStyle>& /*animatedStyle*/) = 0;
195 CompositeAnimation* compositeAnimation() { return m_compAnim; }
233 CompositeAnimation* m_compAnim;
KeyframeAnimation.cpp 35 #include "CompositeAnimation.h"
46 KeyframeAnimation::KeyframeAnimation(const Animation* animation, RenderObject* renderer, int index, CompositeAnimation* compAnim, RenderStyle* unanimatedStyle)
147 void KeyframeAnimation::animate(CompositeAnimation*, RenderObject*, const RenderStyle*, RenderStyle* targetStyle, RefPtr<RenderStyle>& animatedStyle)
365 compositeAnimation()->overrideImplicitAnimations(*it);
373 compositeAnimation()->resumeOverriddenImplicitAnimations(*it);

Completed in 41 milliseconds