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

  /external/webkit/Source/WebCore/page/
WebKitAnimation.h 31 #include "KeyframeAnimation.h"
39 static PassRefPtr<WebKitAnimation> create(PassRefPtr<KeyframeAnimation> keyframeAnimation)
41 return adoptRef(new WebKitAnimation(keyframeAnimation));
73 WebKitAnimation(PassRefPtr<KeyframeAnimation>);
76 RefPtr<KeyframeAnimation> m_keyframeAnimation;
WebKitAnimation.cpp 37 WebKitAnimation::WebKitAnimation(PassRefPtr<KeyframeAnimation> keyframeAnimation)
38 : m_keyframeAnimation(keyframeAnimation)
  /external/webkit/Source/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"
46 KeyframeAnimation::KeyframeAnimation(const Animation* animation, RenderObject* renderer, int index, CompositeAnimation* compAnim, RenderStyle* unanimatedStyle)
61 KeyframeAnimation::~KeyframeAnimation()
68 void KeyframeAnimation::fetchIntervalEndpointsForProperty(int property, const RenderStyle*& fromStyle, const RenderStyle*& toStyle, double& prog) const
147 void KeyframeAnimation::animate(CompositeAnimation*, RenderObject*, const RenderStyle*, RenderStyle* targetStyle, RefPtr<RenderStyle>& animatedStyle)
209 void KeyframeAnimation::getAnimatedStyle(RefPtr<RenderStyle>& animatedStyle)
236 bool KeyframeAnimation::hasAnimationForProperty(int property) const
248 bool KeyframeAnimation::startAnimation(double timeOffset
    [all...]
CompositeAnimation.h 33 #include "KeyframeAnimation.h"
75 PassRefPtr<KeyframeAnimation> getAnimationForProperty(int property) const;
98 typedef HashMap<AtomicStringImpl*, RefPtr<KeyframeAnimation> > AnimationNameMap;
CompositeAnimation.cpp 36 #include "KeyframeAnimation.h"
70 KeyframeAnimation* anim = it->second.get();
121 RefPtr<KeyframeAnimation> keyframeAnim = getAnimationForProperty(prop);
233 RefPtr<KeyframeAnimation> keyframeAnim = m_keyframeAnimations.get(animationName.impl());
249 keyframeAnim = KeyframeAnimation::create(const_cast<Animation*>(anim), renderer, i, this, targetStyle);
264 KeyframeAnimation* keyframeAnim = it->second.get();
301 RefPtr<KeyframeAnimation> keyframeAnim = m_keyframeAnimations.get(*it);
321 RefPtr<KeyframeAnimation> keyframeAnimation = m_keyframeAnimations.get(*it);
322 if (keyframeAnimation)
    [all...]
ImplicitAnimation.cpp 36 #include "KeyframeAnimation.h"
160 RefPtr<KeyframeAnimation> keyframeAnim = m_compAnim->getAnimationForProperty(m_animatingProperty);
  /external/webkit/Source/WebCore/
Android.mk 536 page/animation/KeyframeAnimation.cpp \
    [all...]

Completed in 201 milliseconds