Searched refs:m_animation (Results 1 - 11 of 11) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/ca/mac/
H A DPlatformCAAnimationMac.mm162 m_animation.adoptNS([[CABasicAnimation animationWithKeyPath:keyPath] retain]);
164 m_animation.adoptNS([[CAKeyframeAnimation animationWithKeyPath:keyPath] retain]);
178 m_animation = static_cast<CAPropertyAnimation*>(animation);
223 return m_animation.get();
228 return [m_animation.get() keyPath];
233 return [m_animation.get() beginTime];
238 [m_animation.get() setBeginTime:value];
250 return [m_animation.get() duration];
255 [m_animation.get() setDuration:value];
260 return [m_animation
[all...]
H A DPlatformCALayerMac.mm357 [m_layer.get() addAnimation:animation->m_animation.get() forKey:key];
/external/webkit/Source/WebCore/platform/graphics/ca/win/
H A DPlatformCAAnimationWin.cpp150 m_animation.adoptCF(CACFAnimationCreate(kCACFBasicAnimation));
152 m_animation.adoptCF(CACFAnimationCreate(kCACFKeyframeAnimation));
155 CACFAnimationSetKeyPath(m_animation.get(), s.get());
169 m_animation = animation;
212 return m_animation.get();
217 return CACFAnimationGetKeyPath(m_animation.get());
222 return CACFAnimationGetBeginTime(m_animation.get());
227 CACFAnimationSetBeginTime(m_animation.get(), value);
232 return CACFAnimationGetDuration(m_animation.get());
237 CACFAnimationSetDuration(m_animation
[all...]
/external/webkit/Source/WebCore/page/animation/
H A DKeyframeAnimation.cpp72 if (m_animation->duration() && m_animation->iterationCount() != Animation::IterationCountInfinite)
73 elapsedTime = min(elapsedTime, m_animation->duration() * m_animation->iterationCount());
75 double fractionalTime = m_animation->duration() ? (elapsedTime / m_animation->duration()) : 1;
87 if (m_animation->iterationCount() != Animation::IterationCountInfinite)
88 iteration = min(iteration, m_animation->iterationCount() - 1);
91 bool reversing = (m_animation->direction() == Animation::AnimationDirectionAlternate) && (iteration & 1);
153 if (isNew() && m_animation
[all...]
H A DAnimationBase.h140 void setAnimation(const Animation* anim) { m_animation = const_cast<Animation*>(anim); }
189 const Animation* animation() const { return m_animation.get(); }
232 RefPtr<Animation> m_animation; member in class:WebCore::AnimationBase
H A DAnimationBase.cpp800 , m_animation(const_cast<Animation*>(transition))
808 if (m_animation->iterationCount() > 0)
809 m_totalDuration = m_animation->duration() * m_animation->iterationCount();
918 return m_animation->duration();
923 return m_animation->playState() == AnimPlayStatePlaying;
928 return m_animation->animationsMatch(anim);
1037 if (m_animation->delay() < 0)
1038 timeOffset = -m_animation->delay();
1059 if (m_animation
[all...]
H A DCompositeAnimation.cpp511 int count = keyframeAnim->m_animation->iterationCount();
/external/webkit/Source/WebCore/platform/graphics/ca/
H A DPlatformCAAnimation.h145 RetainPtr<CAPropertyAnimation> m_animation; member in class:WebCore::PlatformCAAnimation
147 RetainPtr<CACFAnimationRef> m_animation; member in class:WebCore::PlatformCAAnimation
H A DGraphicsLayerCA.h365 : m_animation(caAnimation)
372 RefPtr<PlatformCAAnimation> m_animation; member in struct:WebCore::GraphicsLayerCA::LayerPropertyAnimation
H A DGraphicsLayerCA.cpp1437 setAnimationOnLayer(pendingAnimation.m_animation.get(), pendingAnimation.m_property, pendingAnimation.m_name, pendingAnimation.m_index, pendingAnimation.m_timeOffset);
/external/webkit/Source/WebCore/svg/animation/
H A DSVGSMILElement.cpp75 m_animation = 0;
81 , m_animation(animation)
88 SVGSMILElement* m_animation; member in class:WebCore::ConditionEventListener
95 return m_animation == conditionEventListener->m_animation && m_condition == conditionEventListener->m_condition;
101 if (!m_animation)
103 m_animation->handleConditionEvent(event, m_condition);

Completed in 107 milliseconds