Searched refs:m_animation (Results 1 – 12 of 12) sorted by relevance
/external/webkit/Source/WebCore/platform/graphics/ca/win/ |
D | PlatformCAAnimationWin.cpp | 150 m_animation.adoptCF(CACFAnimationCreate(kCACFBasicAnimation)); in PlatformCAAnimation() 152 m_animation.adoptCF(CACFAnimationCreate(kCACFKeyframeAnimation)); in PlatformCAAnimation() 155 CACFAnimationSetKeyPath(m_animation.get(), s.get()); in PlatformCAAnimation() 169 m_animation = animation; in PlatformCAAnimation() 212 return m_animation.get(); in platformAnimation() 217 return CACFAnimationGetKeyPath(m_animation.get()); in keyPath() 222 return CACFAnimationGetBeginTime(m_animation.get()); in beginTime() 227 CACFAnimationSetBeginTime(m_animation.get(), value); in setBeginTime() 232 return CACFAnimationGetDuration(m_animation.get()); in duration() 237 CACFAnimationSetDuration(m_animation.get(), value); in setDuration() [all …]
|
/external/webkit/Source/WebCore/platform/graphics/ca/mac/ |
D | PlatformCAAnimationMac.mm | 162 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.get() speed]; [all …]
|
D | PlatformCALayerMac.mm | 357 [m_layer.get() addAnimation:animation->m_animation.get() forKey:key];
|
/external/webkit/Source/WebCore/page/animation/ |
D | KeyframeAnimation.cpp | 72 … if (m_animation->duration() && m_animation->iterationCount() != Animation::IterationCountInfinite) in fetchIntervalEndpointsForProperty() 73 elapsedTime = min(elapsedTime, m_animation->duration() * m_animation->iterationCount()); in fetchIntervalEndpointsForProperty() 75 double fractionalTime = m_animation->duration() ? (elapsedTime / m_animation->duration()) : 1; in fetchIntervalEndpointsForProperty() 87 if (m_animation->iterationCount() != Animation::IterationCountInfinite) in fetchIntervalEndpointsForProperty() 88 iteration = min(iteration, m_animation->iterationCount() - 1); in fetchIntervalEndpointsForProperty() 91 …bool reversing = (m_animation->direction() == Animation::AnimationDirectionAlternate) && (iteratio… in fetchIntervalEndpointsForProperty() 153 if (isNew() && m_animation->playState() == AnimPlayStatePlaying) in animate() 169 if (waitingToStart() && m_animation->delay() > 0 && !m_animation->fillsBackwards()) in animate() 213 if (waitingToStart() && m_animation->delay() > 0 && !m_animation->fillsBackwards()) in getAnimatedStyle() 254 return layer->backing()->startAnimation(timeOffset, m_animation.get(), m_keyframes); in startAnimation() [all …]
|
D | AnimationBase.cpp | 800 , m_animation(const_cast<Animation*>(transition)) in AnimationBase() 808 if (m_animation->iterationCount() > 0) in AnimationBase() 809 m_totalDuration = m_animation->duration() * m_animation->iterationCount(); in AnimationBase() 918 return m_animation->duration(); in duration() 923 return m_animation->playState() == AnimPlayStatePlaying; in playStatePlaying() 928 return m_animation->animationsMatch(anim); in animationsMatch() 1037 if (m_animation->delay() < 0) in updateStateMachine() 1038 timeOffset = -m_animation->delay(); in updateStateMachine() 1059 if (m_animation->delay() < 0) in updateStateMachine() 1060 m_startTime += m_animation->delay(); in updateStateMachine() [all …]
|
D | AnimationBase.h | 140 void setAnimation(const Animation* anim) { m_animation = const_cast<Animation*>(anim); } in setAnimation() 189 const Animation* animation() const { return m_animation.get(); } in animation() 232 RefPtr<Animation> m_animation; variable
|
D | CompositeAnimation.cpp | 511 int count = keyframeAnim->m_animation->iterationCount(); in pauseAnimationAtTime()
|
/external/webkit/Source/WebCore/platform/graphics/ca/ |
D | PlatformCAAnimation.h | 145 RetainPtr<CAPropertyAnimation> m_animation; variable 147 RetainPtr<CACFAnimationRef> m_animation; variable
|
D | GraphicsLayerCA.h | 365 : m_animation(caAnimation) in LayerPropertyAnimation() 372 RefPtr<PlatformCAAnimation> m_animation; member
|
D | GraphicsLayerCA.cpp | 1437 …setAnimationOnLayer(pendingAnimation.m_animation.get(), pendingAnimation.m_property, pendingAnimat… in updateLayerAnimations()
|
/external/webkit/Source/WebCore/svg/animation/ |
D | SVGSMILElement.cpp | 75 m_animation = 0; in disconnectAnimation() 81 , m_animation(animation) in ConditionEventListener() 88 SVGSMILElement* m_animation; member in WebCore::ConditionEventListener 95 …return m_animation == conditionEventListener->m_animation && m_condition == conditionEventListener… in operator ==() 101 if (!m_animation) in handleEvent() 103 m_animation->handleConditionEvent(event, m_condition); in handleEvent()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-01-29 | 90647 Avoid a divide by zero if m_animation->duration() is zero, which can happen 90694 Avoid a divide by zero if m_animation->duration() is zero, which can happen
|