Home | History | Annotate | Download | only in platform

Lines Matching refs:m_currentVelocity

56     , m_currentVelocity(0)
188 m_horizontalData.m_currentVelocity = 0;
193 m_verticalData.m_currentVelocity = 0;
247 double lastScrollInterval = data->m_currentVelocity ? (WTF::currentTime() - data->m_lastAnimationTime) : animationTimerDelay;
252 if (data->m_currentVelocity < data->m_desiredVelocity) {
259 float potentialNewVelocity = data->m_currentVelocity + potentialVelocityChange;
265 float actualVelocityChange = data->m_desiredVelocity - data->m_currentVelocity;
270 distanceTraveled = ((data->m_currentVelocity + (actualVelocityChange / 2)) * accelerationInterval);
274 data->m_currentVelocity = data->m_desiredVelocity;
277 distanceTraveled = (data->m_currentVelocity + (potentialVelocityChange / 2)) * lastScrollInterval;
278 data->m_currentVelocity = potentialNewVelocity;
283 distanceTraveled = data->m_currentVelocity * lastScrollInterval;
285 data->m_currentVelocity = data->m_desiredVelocity;
293 data->m_currentVelocity = 0;