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/platform/scroll/
ScrollAnimatorNone.cpp 67 , m_attackTime(attackTime)
217 m_attackTime = 0;
244 m_attackTime = parameters->m_attackTime;
252 if (m_attackTime + m_releaseTime > m_animationTime) {
255 m_attackTime = m_animationTime - m_releaseTime;
271 double attackTimeLeft = max(0., m_attackTime - deltaTime);
305 double attackSpot = deltaTime / m_attackTime;
306 attackAreaLeft = attackArea(m_attackCurve, attackSpot, 1) * m_attackTime;
317 m_attackPosition = m_releasePosition - (m_animationTime - m_releaseTime - m_attackTime) * m_desiredVelocity
    [all...]
ScrollAnimatorNone.h 81 double m_attackTime;
130 double m_attackTime;
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ScrollAnimatorNoneTest.cpp 194 this->m_attackTime = data.m_attackTime;
203 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;
280 double attackTimeLeft = std::max(0., m_data->m_attackTime - deltaTime);
310 double attackTimeLeft = std::max(0., m_data->m_attackTime - deltaTime);
    [all...]

Completed in 40 milliseconds