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

  /external/chromium_org/third_party/WebKit/Source/core/platform/
ScrollAnimatorNone.cpp 67 , m_animationTime(animationTime)
216 m_animationTime = 0;
250 m_animationTime = parameters->m_animationTime;
255 if (m_attackTime + m_releaseTime > m_animationTime) {
256 if (m_releaseTime > m_animationTime)
257 m_releaseTime = m_animationTime;
258 m_attackTime = m_animationTime - m_releaseTime;
275 double timeLeft = m_animationTime - deltaTime;
276 double minTimeLeft = m_releaseTime + min(parameters->m_repeatMinimumSustainTime, m_animationTime - m_releaseTime - attackTimeLeft)
    [all...]
ScrollAnimatorNone.h 78 double m_animationTime;
125 double m_animationTime;
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ScrollAnimatorNoneTest.cpp 192 this->m_animationTime = data.m_animationTime;
204 return m_currentVelocity == other.m_currentVelocity && m_desiredPosition == other.m_desiredPosition && m_desiredVelocity == other.m_desiredVelocity && m_startPosition == other.m_startPosition && m_startTime == other.m_startTime && m_startVelocity == other.m_startVelocity && m_animationTime == other.m_animationTime && m_lastAnimationTime == other.m_lastAnimationTime && m_attackPosition == other.m_attackPosition && m_attackTime == other.m_attackTime && m_attackCurve == other.m_attackCurve && m_releasePosition == other.m_releasePosition && m_releaseTime == other.m_releaseTime && m_releaseCurve == other.m_releaseCurve;
267 double oldTimeLeft = m_data->m_animationTime - (m_data->m_lastAnimationTime - m_data->m_startTime);
275 double timeLeft = m_data->m_animationTime - deltaTime;
300 bool testEstimatedMaxVelocity = m_data->m_startTime + m_data->m_animationTime - m_data->m_lastAnimationTime > m_data->m_releaseTime;
305 double timeLeft = m_data->m_animationTime - deltaTime;
    [all...]

Completed in 509 milliseconds