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

  /external/webkit/WebCore/page/animation/
KeyframeAnimation.h 40 // A KeyframeAnimation tracks the state of an explicit animation
42 class KeyframeAnimation : public AnimationBase {
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));
82 KeyframeAnimation(const Animation* animation, RenderObject*, int index, CompositeAnimation*, RenderStyle* unanimatedStyle);
83 virtual ~KeyframeAnimation();
KeyframeAnimation.cpp 30 #include "KeyframeAnimation.h"
44 KeyframeAnimation::KeyframeAnimation(const Animation* animation, RenderObject* renderer, int index, CompositeAnimation* compAnim, RenderStyle* unanimatedStyle)
58 KeyframeAnimation::~KeyframeAnimation()
65 void KeyframeAnimation::getKeyframeAnimationInterval(const RenderStyle*& fromStyle, const RenderStyle*& toStyle, double& prog) const
105 void KeyframeAnimation::animate(CompositeAnimation*, RenderObject*, const RenderStyle*, RenderStyle* targetStyle, RefPtr<RenderStyle>& animatedStyle)
164 void KeyframeAnimation::getAnimatedStyle(RefPtr<RenderStyle>& animatedStyle)
184 bool KeyframeAnimation::hasAnimationForProperty(int property) const
195 bool KeyframeAnimation::startAnimation(double timeOffset
    [all...]
CompositeAnimation.h 35 #include "KeyframeAnimation.h"
75 PassRefPtr<KeyframeAnimation> getAnimationForProperty(int property) const;
96 typedef HashMap<AtomicStringImpl*, RefPtr<KeyframeAnimation> > AnimationNameMap;
CompositeAnimation.cpp 35 #include "KeyframeAnimation.h"
63 KeyframeAnimation* anim = it->second.get();
113 RefPtr<KeyframeAnimation> keyframeAnim = getAnimationForProperty(prop);
220 RefPtr<KeyframeAnimation> keyframeAnim = m_keyframeAnimations.get(animationName.impl());
236 keyframeAnim = KeyframeAnimation::create(const_cast<Animation*>(anim), renderer, i, this, currentStyle ? currentStyle : targetStyle);
251 KeyframeAnimation* keyframeAnim = it->second.get();
285 RefPtr<KeyframeAnimation> keyframeAnim = m_keyframeAnimations.get(*it);
305 RefPtr<KeyframeAnimation> keyframeAnimation = m_keyframeAnimations.get(*it);
306 if (keyframeAnimation)
    [all...]
ImplicitAnimation.cpp 36 #include "KeyframeAnimation.h"
141 RefPtr<KeyframeAnimation> keyframeAnim = m_compAnim->getAnimationForProperty(m_animatingProperty);
  /external/webkit/WebCore/
Android.mk 372 page/animation/KeyframeAnimation.cpp \

Completed in 42 milliseconds