Searched refs:KeyframeAnimation (Results 1 - 5 of 5) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/page/animation/
H A DKeyframeAnimation.h40 // A KeyframeAnimation tracks the state of an explicit animation
42 class KeyframeAnimation : public AnimationBase { class in namespace:WebCore
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));
87 KeyframeAnimation(const Animation* animation, RenderObject*, int index, CompositeAnimation*, RenderStyle* unanimatedStyle);
88 virtual ~KeyframeAnimation();
H A DKeyframeAnimation.cpp30 #include "KeyframeAnimation.h"
45 KeyframeAnimation::KeyframeAnimation(const Animation* animation, RenderObject* renderer, int index, CompositeAnimation* compAnim, RenderStyle* unanimatedStyle) function in class:WebCore::KeyframeAnimation
63 KeyframeAnimation::~KeyframeAnimation()
83 void KeyframeAnimation::fetchIntervalEndpointsForProperty(CSSPropertyID property, const RenderStyle*& fromStyle, const RenderStyle*& toStyle, double& prog) const
142 void KeyframeAnimation::animate(CompositeAnimation* compositeAnimation, RenderObject*, const RenderStyle*, RenderStyle* targetStyle, RefPtr<RenderStyle>& animatedStyle)
198 void KeyframeAnimation::getAnimatedStyle(RefPtr<RenderStyle>& animatedStyle)
223 bool KeyframeAnimation::hasAnimationForProperty(CSSPropertyID property) const
228 bool KeyframeAnimation
[all...]
H A DCompositeAnimation.h33 #include "KeyframeAnimation.h"
73 PassRefPtr<KeyframeAnimation> getAnimationForProperty(CSSPropertyID) const;
89 typedef HashMap<AtomicStringImpl*, RefPtr<KeyframeAnimation> > AnimationNameMap;
H A DCompositeAnimation.cpp36 #include "KeyframeAnimation.h"
76 KeyframeAnimation* anim = it->value.get();
128 RefPtr<KeyframeAnimation> keyframeAnim = getAnimationForProperty(prop);
244 RefPtr<KeyframeAnimation> keyframeAnim = m_keyframeAnimations.get(animationName.impl());
260 keyframeAnim = KeyframeAnimation::create(const_cast<Animation*>(anim), renderer, i, this, targetStyle);
261 LOG(Animations, "Creating KeyframeAnimation %p with keyframes %s, duration %.2f, delay %.2f, iterations %.2f", keyframeAnim.get(), anim->name().utf8().data(), anim->duration(), anim->delay(), anim->iterationCount());
285 KeyframeAnimation* keyframeAnim = it->value.get();
290 LOG(Animations, "Removing KeyframeAnimation %p", keyframeAnim);
323 RefPtr<KeyframeAnimation> keyframeAnim = m_keyframeAnimations.get(*it);
343 RefPtr<KeyframeAnimation> keyframeAnimatio
[all...]
H A DImplicitAnimation.cpp36 #include "KeyframeAnimation.h"
146 RefPtr<KeyframeAnimation> keyframeAnim = m_compAnim->getAnimationForProperty(m_animatingProperty);

Completed in 145 milliseconds