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

  /external/chromium_org/third_party/WebKit/Source/core/frame/animation/
AnimationBase.cpp 409 double AnimationBase::timeToNextService()
ImplicitAnimation.cpp 267 double ImplicitAnimation::timeToNextService()
269 double t = AnimationBase::timeToNextService();
CompositeAnimation.cpp 326 double CompositeAnimation::timeToNextService() const
336 double t = transition ? transition->timeToNextService() : -1;
347 double t = animation ? animation->timeToNextService() : -1;
KeyframeAnimation.cpp 429 double KeyframeAnimation::timeToNextService()
431 double t = AnimationBase::timeToNextService();
AnimationController.cpp 85 void AnimationControllerPrivate::updateAnimations(double& timeToNextService, double& timeToNextEvent, SetNeedsStyleRecalc callSetNeedsStyleRecalc/* = DoNotCallSetNeedsStyleRecalc*/)
95 double t = compAnim->timeToNextService();
117 timeToNextService = minTimeToNextService;
123 double timeToNextService = -1;
128 timeToNextService = compAnim->timeToNextService();
132 if (timeToNextService >= 0)
133 scheduleService(timeToNextService, timeToNextEvent);
138 double timeToNextService = -1;
140 updateAnimations(timeToNextService, timeToNextEvent, DoNotCallSetNeedsStyleRecalc)
    [all...]

Completed in 50 milliseconds