HomeSort by relevance Sort by last modified time
    Searched refs:computeCurrentVelocity (Results 1 - 25 of 67) sorted by null

1 2 3

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
VelocityTrackerInterface.java 27 public void computeCurrentVelocity(int units);
PlatformVelocityTracker.java 53 public void computeCurrentVelocity(int units) {
54 mTracker.computeCurrentVelocity(units);
NoisyVelocityTracker.java 66 public void computeCurrentVelocity(int units) {
KeyguardAffordanceHelper.java 436 mVelocityTracker.computeCurrentVelocity(1000);
  /frameworks/base/core/tests/coretests/src/android/view/
VelocityTest.java 44 * the previous values after a call to computeCurrentVelocity()
51 vt.computeCurrentVelocity(1);
55 vt.computeCurrentVelocity(1);
66 vt.computeCurrentVelocity(1000);
77 vt.computeCurrentVelocity(1000);
89 vt.computeCurrentVelocity(1000);
101 vt.computeCurrentVelocity(1000);
117 vt.computeCurrentVelocity(1000);
132 vt.computeCurrentVelocity(1);
137 vt.computeCurrentVelocity(1)
    [all...]
  /frameworks/base/core/java/android/view/
VelocityTracker.java 28 * {@link #computeCurrentVelocity(int)} and then call {@link #getXVelocity(int)}
130 * Equivalent to invoking {@link #computeCurrentVelocity(int, float)} with a maximum
133 * @see #computeCurrentVelocity(int, float)
135 public void computeCurrentVelocity(int units) {
152 public void computeCurrentVelocity(int units, float maxVelocity) {
158 * {@link #computeCurrentVelocity(int)} before calling this function.
168 * {@link #computeCurrentVelocity(int)} before calling this function.
178 * {@link #computeCurrentVelocity(int)} before calling this function.
189 * {@link #computeCurrentVelocity(int)} before calling this function.
202 * It is not necessary to call {@link #computeCurrentVelocity(int)} before callin
    [all...]
GestureDetector.java 494 mVelocityTracker.computeCurrentVelocity(1000, mMaximumFlingVelocity);
604 velocityTracker.computeCurrentVelocity(1000, mMaximumFlingVelocity);
  /cts/tests/tests/view/src/android/view/cts/
VelocityTrackerTest.java 168 mVelocityTracker.computeCurrentVelocity(1);
181 mVelocityTracker.computeCurrentVelocity(1);
  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 51 void computeCurrentVelocity(int32_t units, float maxVelocity);
80 void VelocityTrackerState::computeCurrentVelocity(int32_t units, float maxVelocity) {
175 state->computeCurrentVelocity(units, maxVelocity);
  /packages/apps/Calendar/src/com/android/calendar/month/
MonthListView.java 117 mTracker.computeCurrentVelocity(1000); // in pixels per second
  /frameworks/support/v4/java/android/support/v4/view/
GestureDetectorCompat.java 263 mVelocityTracker.computeCurrentVelocity(1000, mMaximumFlingVelocity);
372 velocityTracker.computeCurrentVelocity(1000, mMaximumFlingVelocity);
  /frameworks/base/core/java/com/android/internal/widget/
SwipeDismissLayout.java 258 mVelocityTracker.computeCurrentVelocity(1000);
RotarySelector.java 547 velocityTracker.computeCurrentVelocity(1000, mMaximumVelocity);
567 velocityTracker.computeCurrentVelocity(1000, mMaximumVelocity);
PointerLocationView.java 576 mVelocity.computeCurrentVelocity(1);
579 mAltVelocity.computeCurrentVelocity(1);
    [all...]
ResolverDrawerLayout.java 281 mVelocityTracker.computeCurrentVelocity(1000);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
SwipeHelper.java 354 velocityTracker.computeCurrentVelocity(1000 /* px/sec */, maxVelocity);
TaskStackViewTouchHandler.java 284 velocityTracker.computeCurrentVelocity(1000, mMaximumVelocity);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
KeyboardView.java 392 mSwipeTracker.computeCurrentVelocity(1000);
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java 398 mSwipeTracker.computeCurrentVelocity(1000);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
SwipeHelper.java 438 mVelocityTracker.computeCurrentVelocity(1000 /* px/sec */, maxVelocity);
  /packages/apps/Camera/src/com/android/camera/ui/
Switch.java 310 mVelocityTracker.computeCurrentVelocity(1000);
  /packages/apps/Camera2/src/com/android/camera/ui/
Switch.java 301 mVelocityTracker.computeCurrentVelocity(1000);
  /packages/apps/Dialer/src/com/android/dialer/list/
SwipeHelper.java 399 mVelocityTracker.computeCurrentVelocity(1000 /* px/sec */, maxVelocity);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
SwipeHelper.java 404 mVelocityTracker.computeCurrentVelocity(1000 /* px/sec */, maxVelocity);
  /frameworks/base/core/java/android/widget/
SlidingDrawer.java 436 velocityTracker.computeCurrentVelocity(mVelocityUnits);
    [all...]

Completed in 734 milliseconds

1 2 3