HomeSort by relevance Sort by last modified time
    Searched refs:timeToNextService (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/page/animation/
AnimationController.cpp 86 void AnimationControllerPrivate::updateAnimations(double& timeToNextService, double& timeToNextEvent, SetNeedsStyleRecalc callSetNeedsStyleRecalc/* = DoNotCallSetNeedsStyleRecalc*/)
96 double t = compAnim->timeToNextService();
118 timeToNextService = minTimeToNextService;
124 double timeToNextService = -1;
129 timeToNextService = compAnim->timeToNextService();
133 if (timeToNextService >= 0)
134 scheduleService(timeToNextService, timeToNextEvent);
139 double timeToNextService = -1;
141 updateAnimations(timeToNextService, timeToNextEvent, DoNotCallSetNeedsStyleRecalc)
    [all...]
AnimationControllerPrivate.h 64 void updateAnimations(double& timeToNextService, double& timeToNextEvent, SetNeedsStyleRecalc callSetNeedsStyleRecalc = DoNotCallSetNeedsStyleRecalc);
111 void scheduleService(double timeToNextService, double timeToNextEvent);
CompositeAnimation.h 59 double timeToNextService() const;
ImplicitAnimation.h 70 virtual double timeToNextService();
KeyframeAnimation.h 61 virtual double timeToNextService();
AnimationBase.h 129 virtual double timeToNextService();
ImplicitAnimation.cpp 275 double ImplicitAnimation::timeToNextService()
277 double t = AnimationBase::timeToNextService();
CompositeAnimation.cpp 328 double CompositeAnimation::timeToNextService() const
338 double t = transition ? transition->timeToNextService() : -1;
349 double t = animation ? animation->timeToNextService() : -1;
KeyframeAnimation.cpp 450 double KeyframeAnimation::timeToNextService()
452 double t = AnimationBase::timeToNextService();
AnimationBase.cpp 425 double AnimationBase::timeToNextService()

Completed in 55 milliseconds