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

  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollAnimatorNone.cpp 69 , m_releaseTime(releaseTime)
221 m_releaseTime = 0;
248 m_releaseTime = parameters->m_releaseTime;
252 if (m_attackTime + m_releaseTime > m_animationTime) {
253 if (m_releaseTime > m_animationTime)
254 m_releaseTime = m_animationTime;
255 m_attackTime = m_animationTime - m_releaseTime;
273 double minTimeLeft = m_releaseTime + min(parameters->m_repeatMinimumSustainTime, m_animationTime - m_releaseTime - attackTimeLeft)
    [all...]
ScrollAnimatorNone.h 84 double m_releaseTime;
134 double m_releaseTime;
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ScrollAnimatorNoneTest.cpp 197 this->m_releaseTime = data.m_releaseTime;
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;
279 double releaseTimeLeft = std::min(timeLeft, m_data->m_releaseTime);
303 bool testEstimatedMaxVelocity = m_data->m_startTime + m_data->m_animationTime - m_data->m_lastAnimationTime > m_data->m_releaseTime;
309 double releaseTimeLeft = std::min(timeLeft, m_data->m_releaseTime);
    [all...]

Completed in 34 milliseconds