Home | History | Annotate | Download | only in animation

Lines Matching refs:AnimationControllerPrivate

33 #include "AnimationControllerPrivate.h"
49 AnimationControllerPrivate::AnimationControllerPrivate(Frame* frame)
50 : m_animationTimer(this, &AnimationControllerPrivate::animationTimerFired)
51 , m_updateStyleIfNeededDispatcher(this, &AnimationControllerPrivate::updateStyleIfNeededDispatcherFired)
62 AnimationControllerPrivate::~AnimationControllerPrivate()
66 PassRefPtr<CompositeAnimation> AnimationControllerPrivate::accessCompositeAnimation(RenderObject* renderer)
76 bool AnimationControllerPrivate::clear(RenderObject* renderer)
87 void AnimationControllerPrivate::updateAnimationTimer(bool callSetChanged/* = false*/)
135 void AnimationControllerPrivate::updateStyleIfNeededDispatcherFired(Timer<AnimationControllerPrivate>*)
159 void AnimationControllerPrivate::startUpdateStyleIfNeededDispatcher()
165 void AnimationControllerPrivate::addEventToDispatch(PassRefPtr<Element> element, const AtomicString& eventType, const String& name, double elapsedTime)
177 void AnimationControllerPrivate::addNodeChangeToDispatch(PassRefPtr<Node> node)
187 void AnimationControllerPrivate::animationTimerFired(Timer<AnimationControllerPrivate>*)
198 bool AnimationControllerPrivate::isAnimatingPropertyOnRenderer(RenderObject* renderer, CSSPropertyID property, bool isRunningNow) const
207 void AnimationControllerPrivate::suspendAnimations(Document* document)
223 void AnimationControllerPrivate::resumeAnimations(Document* document)
239 bool AnimationControllerPrivate::pauseAnimationAtTime(RenderObject* renderer, const String& name, double t)
257 bool AnimationControllerPrivate::pauseTransitionAtTime(RenderObject* renderer, const String& property, double t)
275 double AnimationControllerPrivate::beginAnimationUpdateTime()
282 void AnimationControllerPrivate::endAnimationUpdate()
289 void AnimationControllerPrivate::receivedStartTimeResponse(double time)
295 PassRefPtr<RenderStyle> AnimationControllerPrivate::getAnimatedStyleForRenderer(RenderObject* renderer)
314 unsigned AnimationControllerPrivate::numberOfActiveAnimations() const
327 void AnimationControllerPrivate::addToStyleAvailableWaitList(AnimationBase* animation)
340 void AnimationControllerPrivate::removeFromStyleAvailableWaitList(AnimationBase* animationToRemove)
358 void AnimationControllerPrivate::styleAvailable()
372 void AnimationControllerPrivate::addToStartTimeResponseWaitList(AnimationBase* animation, bool willGetResponse)
405 void AnimationControllerPrivate::removeFromStartTimeResponseWaitList(AnimationBase* animationToRemove)
424 void AnimationControllerPrivate::startTimeResponse(double time)
439 AnimationControllerPrivate(frame))