Searched defs:computeCurrentVelocity (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/view/
H A DVelocityTracker.java31 * {@link #computeCurrentVelocity(int)} and then call {@link #getXVelocity(int)}
174 * Equivalent to invoking {@link #computeCurrentVelocity(int, float)} with a maximum
177 * @see #computeCurrentVelocity(int, float)
179 public void computeCurrentVelocity(int units) { method in class:VelocityTracker
196 public void computeCurrentVelocity(int units, float maxVelocity) { method in class:VelocityTracker
202 * {@link #computeCurrentVelocity(int)} before calling this function.
212 * {@link #computeCurrentVelocity(int)} before calling this function.
222 * {@link #computeCurrentVelocity(int)} before calling this function.
233 * {@link #computeCurrentVelocity(int)} before calling this function.
246 * It is not necessary to call {@link #computeCurrentVelocity(in
[all...]
/frameworks/base/core/jni/
H A Dandroid_view_VelocityTracker.cpp51 void computeCurrentVelocity(int32_t units, float maxVelocity);
80 void VelocityTrackerState::computeCurrentVelocity(int32_t units, float maxVelocity) { function in class:android::VelocityTrackerState
175 state->computeCurrentVelocity(units, maxVelocity);
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboardView.java395 mSwipeTracker.computeCurrentVelocity(1000);
1512 public void computeCurrentVelocity(int units) { method in class:KeyboardView.SwipeTracker
1513 computeCurrentVelocity(units, Float.MAX_VALUE);
1516 public void computeCurrentVelocity(int units, float maxVelocity) { method in class:KeyboardView.SwipeTracker

Completed in 183 milliseconds