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

/macosx-10.9.5/WebCore-7537.78.1/page/animation/
H A DAnimationBase.cpp85 , m_animation(const_cast<Animation*>(transition))
89 if (m_animation->iterationCount() > 0)
90 m_totalDuration = m_animation->duration() * m_animation->iterationCount();
102 return m_animation->duration();
107 return m_animation->playState() == AnimPlayStatePlaying;
112 return m_animation->animationsMatch(anim);
255 if (m_animation->delay() < 0)
256 timeOffset = -m_animation->delay();
278 if (m_animation
[all...]
H A DKeyframeAnimation.cpp87 if (m_animation->duration() && m_animation->iterationCount() != Animation::IterationCountInfinite)
88 elapsedTime = min(elapsedTime, m_animation->duration() * m_animation->iterationCount());
148 if (isNew() && m_animation->playState() == AnimPlayStatePlaying && !compositeAnimation->isSuspended())
164 if (waitingToStart() && m_animation->delay() > 0 && !m_animation->fillsBackwards())
202 if (waitingToStart() && m_animation->delay() > 0 && !m_animation->fillsBackwards())
232 return toRenderBoxModelObject(m_object)->startAnimation(timeOffset, m_animation
[all...]
H A DAnimationBase.h146 void setAnimation(const Animation* anim) { m_animation = const_cast<Animation*>(anim); }
193 const Animation* animation() const { return m_animation.get(); }
239 RefPtr<Animation> m_animation; member in class:WebCore::AnimationBase
H A DCompositeAnimation.cpp510 double count = keyframeAnim->m_animation->iterationCount();
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/ca/mac/
H A DPlatformCAAnimationMac.mm168 m_animation = [CABasicAnimation animationWithKeyPath:keyPath];
170 m_animation = [CAKeyframeAnimation animationWithKeyPath:keyPath];
184 m_animation = static_cast<CAPropertyAnimation*>(animation);
229 return m_animation.get();
234 return [m_animation.get() keyPath];
239 return [m_animation.get() beginTime];
244 [m_animation.get() setBeginTime:value];
256 return [m_animation.get() duration];
261 [m_animation.get() setDuration:value];
266 return [m_animation
[all...]
H A DPlatformCALayerMac.mm445 [m_layer.get() addAnimation:animation->m_animation.get() forKey:key];
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/ca/win/
H A DPlatformCAAnimationWin.cpp160 m_animation = adoptCF(CACFAnimationCreate(kCACFBasicAnimation));
162 m_animation = adoptCF(CACFAnimationCreate(kCACFKeyframeAnimation));
164 CACFAnimationSetKeyPath(m_animation.get(), keyPath.createCFString().get());
178 m_animation = animation;
222 return m_animation.get();
227 return CACFAnimationGetKeyPath(m_animation.get());
232 return CACFAnimationGetBeginTime(m_animation.get());
237 CACFAnimationSetBeginTime(m_animation.get(), value);
242 return CACFAnimationGetDuration(m_animation.get());
247 CACFAnimationSetDuration(m_animation
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DGraphicsLayerAnimation.cpp219 , m_animation(Animation::create(animation))
254 return m_animation->fillsForwards();
282 double normalizedValue = normalizedAnimationValue(totalRunningTime, m_animation->duration(), m_animation->direction(), m_animation->iterationCount());
284 if (m_animation->iterationCount() != Animation::IterationCountInfinite && totalRunningTime >= m_animation->duration() * m_animation->iterationCount()) {
286 if (m_animation->fillsForwards())
287 normalizedValue = normalizedAnimationValueForFillsForwards(m_animation
[all...]
H A DGraphicsLayerAnimation.h64 PassRefPtr<Animation> animation() const { return m_animation.get(); }
72 RefPtr<Animation> m_animation; member in class:WebCore::GraphicsLayerAnimation
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/ca/
H A DPlatformCAAnimation.h157 RetainPtr<CAPropertyAnimation> m_animation; member in class:WebCore::PlatformCAAnimation
159 RetainPtr<CACFAnimationRef> m_animation; member in class:WebCore::PlatformCAAnimation
H A DGraphicsLayerCA.h450 : m_animation(caAnimation)
458 RefPtr<PlatformCAAnimation> m_animation;
H A DGraphicsLayerCA.cpp1913 setAnimationOnLayer(pendingAnimation.m_animation.get(), pendingAnimation.m_property, pendingAnimation.m_name, pendingAnimation.m_index, pendingAnimation.m_subIndex, pendingAnimation.m_timeOffset);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/clutter/
H A DPlatformClutterAnimation.cpp135 m_animation = adoptGRef(G_OBJECT(clutter_transition_group_new()));
145 m_animation.clear();
174 double duration = clutter_timeline_get_duration(CLUTTER_TIMELINE(m_animation.get()));
182 clutter_timeline_set_duration(CLUTTER_TIMELINE(m_animation.get()), duration);
429 ASSERT(m_animation);
430 return CLUTTER_TIMELINE(m_animation.get());
448 clutter_transition_group_add_transition(CLUTTER_TRANSITION_GROUP(m_animation.get()), transition.get());
464 clutter_transition_group_add_transition(CLUTTER_TRANSITION_GROUP(m_animation.get()), transition.get());
525 clutter_transition_group_add_transition(CLUTTER_TRANSITION_GROUP(m_animation.get()), transition.get());
560 clutter_transition_group_add_transition(CLUTTER_TRANSITION_GROUP(m_animation
[all...]
H A DGraphicsLayerClutter.h234 : m_animation(caAnimation)
241 RefPtr<PlatformClutterAnimation> m_animation; member in struct:WebCore::GraphicsLayerClutter::LayerPropertyAnimation
H A DPlatformClutterAnimation.h156 GRefPtr<GObject> m_animation; member in class:WebCore::PlatformClutterAnimation
H A DGraphicsLayerClutter.cpp620 setAnimationOnLayer(pendingAnimation.m_animation.get(), pendingAnimation.m_property, pendingAnimation.m_name, pendingAnimation.m_index, pendingAnimation.m_timeOffset);
/macosx-10.9.5/WebCore-7537.78.1/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 281 milliseconds