OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:timeToNextService
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/frame/animation/
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
...]
AnimationControllerPrivate.h
64
void updateAnimations(double&
timeToNextService
, double& timeToNextEvent, SetNeedsStyleRecalc callSetNeedsStyleRecalc = DoNotCallSetNeedsStyleRecalc);
106
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
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
();
AnimationBase.cpp
409
double AnimationBase::
timeToNextService
()
Completed in 47 milliseconds