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 65 , m_attackTime(attackTime)
215 m_attackTime = 0;
242 m_attackTime = parameters->m_attackTime;
250 if (m_attackTime + m_releaseTime > m_animationTime) {
253 m_attackTime = m_animationTime - m_releaseTime;
269 double attackTimeLeft = std::max(0., m_attackTime - deltaTime);
303 double attackSpot = deltaTime / m_attackTime;
304 attackAreaLeft = attackArea(m_attackCurve, attackSpot, 1) * m_attackTime;
315 m_attackPosition = m_releasePosition - (m_animationTime - m_releaseTime - m_attackTime) * m_desiredVelocity
    [all...]
ScrollAnimatorNone.h 77 double m_attackTime;
126 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 429 milliseconds