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

  /external/chromium_org/third_party/WebKit/Source/core/frame/animation/
AnimationBase.h 121 bool postActive() const { return m_animState == AnimationStateDone; }
122 bool active() const { return !postActive() && !preActive(); }
123 bool running() const { return !isNew() && !postActive(); }
157 return (!waitingToStart() && !postActive()) && affectsProperty(property);
159 return !postActive() && affectsProperty(property);
AnimationBase.cpp 483 if (postActive() || !m_animation->duration())
503 if (postActive()) {
572 ASSERT(!postActive());
ImplicitAnimation.cpp 58 if (!postActive())
71 if (postActive())
CompositeAnimation.cpp 126 if (!implAnim->postActive())
130 // if it were postActive. But we still need to check for equality because
198 // animation which is finished (postActive).
200 if (it->value->postActive())
225 // If this animation is postActive, skip it so it gets removed at the end of this function.
226 if (keyframeAnim->postActive())
KeyframeAnimation.cpp 69 if (!postActive())
164 if (postActive()) {

Completed in 308 milliseconds