Home | History | Annotate | Download | only in animation

Lines Matching defs:elapsedTime

71     double elapsedTime = getElapsedTime();
73 elapsedTime = min(elapsedTime, m_animation->duration() * m_animation->iterationCount());
75 double fractionalTime = m_animation->duration() ? (elapsedTime / m_animation->duration()) : 1;
303 void KeyframeAnimation::onAnimationStart(double elapsedTime)
305 sendAnimationEvent(eventNames().webkitAnimationStartEvent, elapsedTime);
308 void KeyframeAnimation::onAnimationIteration(double elapsedTime)
310 sendAnimationEvent(eventNames().webkitAnimationIterationEvent, elapsedTime);
313 void KeyframeAnimation::onAnimationEnd(double elapsedTime)
315 sendAnimationEvent(eventNames().webkitAnimationEndEvent, elapsedTime);
322 bool KeyframeAnimation::sendAnimationEvent(const AtomicString& eventType, double elapsedTime)
348 m_compAnim->animationController()->addEventToDispatch(element, eventType, m_keyframes.animationName(), elapsedTime);