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

  /frameworks/base/core/java/android/widget/
OverScroller.java 479 int mVelocity;
578 mVelocity = 0;
587 mVelocity = velocity;
612 mDuration = computeDuration(mStart, min, mVelocity, mDeceleration);
617 mDuration = computeDuration(mStart, max, mVelocity, mDeceleration);
648 mVelocity = 0;
668 mVelocity = (int) (Math.abs(end - start) * TIME_COEF * (positive ? 1.0 : -1.0f));
680 mVelocity = velocity;
692 mDuration = computeDuration(mStart, min, mVelocity, mDeceleration);
697 mDuration = computeDuration(mStart, max, mVelocity, mDeceleration)
    [all...]
Scroller.java 58 private float mVelocity;
152 return mVelocity - mDeceleration * timePassed() / 2000.0f;
218 float distance = (mVelocity * timePassedSeconds)
317 mVelocity = velocity;
  /frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java 90 private final VelocityTracker mVelocity;
129 mVelocity = VelocityTracker.obtain();
351 mVelocity.clear();
383 mVelocity.addMovement(event);
384 mVelocity.computeCurrentVelocity(1);
402 ps.mXVelocity = mVelocity.getXVelocity(id);
403 ps.mYVelocity = mVelocity.getYVelocity(id);
  /packages/apps/Launcher2/src/com/android/launcher2/
AllApps3D.java 126 private float mVelocity;
    [all...]

Completed in 778 milliseconds