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

  /external/chromium_org/third_party/WebKit/Source/core/platform/
ScrollAnimatorNone.cpp 70 , m_attackTime(attackTime)
220 m_attackTime = 0;
247 m_attackTime = parameters->m_attackTime;
255 if (m_attackTime + m_releaseTime > m_animationTime) {
258 m_attackTime = m_animationTime - m_releaseTime;
274 double attackTimeLeft = max(0., m_attackTime - deltaTime);
308 double attackSpot = deltaTime / m_attackTime;
309 attackAreaLeft = attackArea(m_attackCurve, attackSpot, 1) * m_attackTime;
320 m_attackPosition = m_releasePosition - (m_animationTime - m_releaseTime - m_attackTime) * m_desiredVelocity
    [all...]
ScrollAnimatorNone.h 82 double m_attackTime;
129 double m_attackTime;
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ScrollAnimatorNoneTest.cpp 195 this->m_attackTime = data.m_attackTime;
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;
277 double attackTimeLeft = max(0., m_data->m_attackTime - deltaTime);
307 double attackTimeLeft = max(0., m_data->m_attackTime - deltaTime);
    [all...]

Completed in 1134 milliseconds