OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:postActive
(Results
1 - 5
of
5
) sorted by null
/external/webkit/Source/WebCore/page/animation/
AnimationBase.h
116
bool
postActive
() const { return m_animState == AnimationStateDone; }
117
bool active() const { return !
postActive
() && !preActive(); }
118
bool running() const { return !isNew() && !
postActive
(); }
157
return (!waitingToStart() && !
postActive
()) && affectsProperty(property);
159
return !
postActive
() && affectsProperty(property);
ImplicitAnimation.cpp
57
if (!
postActive
())
70
if (
postActive
())
CompositeAnimation.cpp
131
if (!implAnim->
postActive
())
135
// if it were
postActive
. But we still need to check for equality because
207
// animation which is finished (
postActive
).
209
if (it->second->
postActive
())
236
// If this animation is
postActive
, skip it so it gets removed at the end of this function.
237
if (keyframeAnim->
postActive
())
KeyframeAnimation.cpp
64
if (!
postActive
())
158
if (
postActive
()) {
AnimationBase.cpp
[
all
...]
Completed in 285 milliseconds