HomeSort by relevance Sort by last modified time
    Searched full:compositeanimation (Results 1 - 18 of 18) sorted by null

  /external/webkit/WebCore/page/animation/
CompositeAnimation.h 46 // A CompositeAnimation represents a collection of animations that are running
48 class CompositeAnimation : public RefCounted<CompositeAnimation> {
50 static PassRefPtr<CompositeAnimation> create(AnimationControllerPrivate* animationController)
52 return adoptRef(new CompositeAnimation(animationController));
55 ~CompositeAnimation();
85 CompositeAnimation(AnimationControllerPrivate* animationController)
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);
AnimationController.cpp 35 #include "CompositeAnimation.h"
66 PassRefPtr<CompositeAnimation> AnimationControllerPrivate::accessCompositeAnimation(RenderObject* renderer)
68 RefPtr<CompositeAnimation> animation = m_compositeAnimations.get(renderer);
70 animation = CompositeAnimation::create(this);
80 PassRefPtr<CompositeAnimation> animation = m_compositeAnimations.take(renderer);
94 CompositeAnimation* compAnim = it->second.get();
200 RefPtr<CompositeAnimation> animation = m_compositeAnimations.get(renderer);
215 CompositeAnimation* compAnim = it->second.get();
231 CompositeAnimation* compAnim = it->second.get();
244 RefPtr<CompositeAnimation> compAnim = accessCompositeAnimation(renderer)
    [all...]
AnimationBase.h 40 class CompositeAnimation;
48 friend class CompositeAnimation;
51 AnimationBase(const Animation* transition, RenderObject* renderer, CompositeAnimation* compAnim);
127 virtual void animate(CompositeAnimation*, RenderObject*, const RenderStyle* /*currentStyle*/, RenderStyle* /*targetStyle*/, RefPtr<RenderStyle>& /*animatedStyle*/) = 0;
183 CompositeAnimation* compositeAnimation() { return m_compAnim; }
221 CompositeAnimation* m_compAnim;
CompositeAnimation.cpp 30 #include "CompositeAnimation.h"
41 CompositeAnimation::~CompositeAnimation()
48 void CompositeAnimation::clearRenderer()
69 void CompositeAnimation::updateTransitions(RenderObject* renderer, RenderStyle* currentStyle, RenderStyle* targetStyle)
184 void CompositeAnimation::updateKeyframeAnimations(RenderObject* renderer, RenderStyle* currentStyle, RenderStyle* targetStyle)
261 PassRefPtr<RenderStyle> CompositeAnimation::animate(RenderObject* renderer, RenderStyle* currentStyle, RenderStyle* targetStyle)
293 PassRefPtr<RenderStyle> CompositeAnimation::getAnimatedStyle() const
314 void CompositeAnimation::setAnimating(bool animating)
333 double CompositeAnimation::timeToNextService() cons
    [all...]
AnimationControllerPrivate.h 44 class CompositeAnimation;
57 PassRefPtr<CompositeAnimation> accessCompositeAnimation(RenderObject*);
96 typedef HashMap<RenderObject*, RefPtr<CompositeAnimation> > RenderObjectAnimationMap;
KeyframeAnimation.cpp 35 #include "CompositeAnimation.h"
44 KeyframeAnimation::KeyframeAnimation(const Animation* animation, RenderObject* renderer, int index, CompositeAnimation* compAnim, RenderStyle* unanimatedStyle)
105 void KeyframeAnimation::animate(CompositeAnimation*, RenderObject*, const RenderStyle*, RenderStyle* targetStyle, RefPtr<RenderStyle>& animatedStyle)
306 compositeAnimation()->overrideImplicitAnimations(*it);
314 compositeAnimation()->resumeOverriddenImplicitAnimations(*it);
ImplicitAnimation.cpp 32 #include "CompositeAnimation.h"
43 ImplicitAnimation::ImplicitAnimation(const Animation* transition, int animatingProperty, RenderObject* renderer, CompositeAnimation* compAnim, RenderStyle* fromStyle)
66 void ImplicitAnimation::animate(CompositeAnimation*, RenderObject*, const RenderStyle*, RenderStyle* targetStyle, RefPtr<RenderStyle>& animatedStyle)
AnimationBase.cpp 37 #include "CompositeAnimation.h"
    [all...]
  /external/webkit/WebCore/
ChangeLog-2010-01-29     [all...]
Android.mk 370 page/animation/CompositeAnimation.cpp \
WebCore.pro 726 page/animation/CompositeAnimation.cpp \
    [all...]
GNUmakefile.am     [all...]
WebCore.gypi     [all...]
ChangeLog-2009-06-16 160 * page/animation/CompositeAnimation.cpp:
161 (WebCore::CompositeAnimation::updateTransitions):
    [all...]
  /external/webkit/WebCore/WebCore.xcodeproj/
project.pbxproj     [all...]
  /external/webkit/WebCore/WebCore.vcproj/
WebCore.vcproj     [all...]

Completed in 1044 milliseconds