/external/chromium_org/third_party/WebKit/Source/core/frame/animation/ |
KeyframeAnimation.h | 40 // A KeyframeAnimation tracks the state of an explicit animation 42 class KeyframeAnimation : public AnimationBase { 44 static PassRefPtr<KeyframeAnimation> create(const CSSAnimationData* animation, RenderObject& renderer, int index, CompositeAnimation* compositeAnimation, RenderStyle& unanimatedStyle) 46 return adoptRef(new KeyframeAnimation(animation, renderer, index, compositeAnimation, unanimatedStyle)); 83 KeyframeAnimation(const CSSAnimationData*, RenderObject&, int index, CompositeAnimation*, RenderStyle& unanimatedStyle); 84 virtual ~KeyframeAnimation();
|
KeyframeAnimation.cpp | 30 #include "core/frame/animation/KeyframeAnimation.h" 47 KeyframeAnimation::KeyframeAnimation(const CSSAnimationData* animation, RenderObject& renderer, int index, CompositeAnimation* compAnim, RenderStyle& unanimatedStyle) 66 KeyframeAnimation::~KeyframeAnimation() 73 void KeyframeAnimation::fetchIntervalEndpointsForProperty(CSSPropertyID property, const RenderStyle*& fromStyle, const RenderStyle*& toStyle, double& prog) const 153 void KeyframeAnimation::animate(CompositeAnimation*, RenderObject*, const RenderStyle*, RenderStyle* targetStyle, RefPtr<RenderStyle>& animatedStyle) 208 void KeyframeAnimation::getAnimatedStyle(RefPtr<RenderStyle>& animatedStyle) 233 bool KeyframeAnimation::hasAnimationForProperty(CSSPropertyID property) const 238 void KeyframeAnimation::startAnimation(double timeOffset [all...] |
CompositeAnimation.h | 33 #include "core/frame/animation/KeyframeAnimation.h" 68 PassRefPtr<KeyframeAnimation> getAnimationForProperty(CSSPropertyID) const; 86 typedef HashMap<AtomicString, RefPtr<KeyframeAnimation> > AnimationNameMap;
|
CompositeAnimation.cpp | 64 KeyframeAnimation* anim = it->value.get(); 116 RefPtr<KeyframeAnimation> keyframeAnim = getAnimationForProperty(prop); 223 RefPtr<KeyframeAnimation> keyframeAnim = m_keyframeAnimations.get(name); 238 keyframeAnim = KeyframeAnimation::create(const_cast<CSSAnimationData*>(anim), renderer, i, this, targetStyle); 253 KeyframeAnimation* keyframeAnim = it->value.get(); 300 RefPtr<KeyframeAnimation> keyframeAnim = m_keyframeAnimations.get(*it); 318 RefPtr<KeyframeAnimation> keyframeAnimation = m_keyframeAnimations.get(*it); 319 ASSERT(keyframeAnimation); 320 keyframeAnimation->getAnimatedStyle(resultStyle) [all...] |
ImplicitAnimation.cpp | 37 #include "core/frame/animation/KeyframeAnimation.h" 138 RefPtr<KeyframeAnimation> keyframeAnim = m_compAnim->getAnimationForProperty(m_animatingProperty);
|
/development/samples/devbytes/animation/KeyframeAnimation/src/com/example/android/keyframeanimation/ |
KeyframeAnimation.java | 17 package com.example.android.keyframeanimation; 37 public class KeyframeAnimation extends Activity {
|
/external/chromium_org/third_party/WebKit/Source/core/ |
webcore_remaining.target.darwin-arm.mk | 474 third_party/WebKit/Source/core/frame/animation/KeyframeAnimation.cpp \ [all...] |
webcore_remaining.target.darwin-mips.mk | 474 third_party/WebKit/Source/core/frame/animation/KeyframeAnimation.cpp \ [all...] |
webcore_remaining.target.darwin-x86.mk | 474 third_party/WebKit/Source/core/frame/animation/KeyframeAnimation.cpp \ [all...] |
webcore_remaining.target.linux-arm.mk | 474 third_party/WebKit/Source/core/frame/animation/KeyframeAnimation.cpp \ [all...] |
webcore_remaining.target.linux-mips.mk | 474 third_party/WebKit/Source/core/frame/animation/KeyframeAnimation.cpp \ [all...] |
webcore_remaining.target.linux-x86.mk | 474 third_party/WebKit/Source/core/frame/animation/KeyframeAnimation.cpp \ [all...] |