/frameworks/base/core/tests/coretests/src/android/view/ |
D | VelocityTest.java | 52 vt.computeCurrentVelocity(1); in testClear() 56 vt.computeCurrentVelocity(1); in testClear() 67 vt.computeCurrentVelocity(1000); in testDragAcceleration() 78 vt.computeCurrentVelocity(1000); in testDragDeceleration() 91 vt.computeCurrentVelocity(1000); in testDragLinearHorizontal() 104 vt.computeCurrentVelocity(1000); in testDragLinearVertical() 121 vt.computeCurrentVelocity(1000); in testDragWith2Points() 137 vt.computeCurrentVelocity(1); in testStabilityInNbPoints() 142 vt.computeCurrentVelocity(1); in testStabilityInNbPoints() 159 vt.computeCurrentVelocity(1); in testStabilityInTime() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | PlatformVelocityTracker.java | 53 public void computeCurrentVelocity(int units) { in computeCurrentVelocity() method in PlatformVelocityTracker 54 mTracker.computeCurrentVelocity(units); in computeCurrentVelocity()
|
D | VelocityTrackerInterface.java | 27 public void computeCurrentVelocity(int units); in computeCurrentVelocity() method
|
D | NoisyVelocityTracker.java | 66 public void computeCurrentVelocity(int units) { in computeCurrentVelocity() method in NoisyVelocityTracker
|
D | NavigationBarGestureHelper.java | 243 mVelocityTracker.computeCurrentVelocity(1000); in handleDragActionUpEvent()
|
D | KeyguardAffordanceHelper.java | 487 mVelocityTracker.computeCurrentVelocity(1000); in getCurrentVelocity()
|
D | PanelView.java | 380 mVelocityTracker.computeCurrentVelocity(1000); in endMotionEvent()
|
/frameworks/base/core/java/android/view/ |
D | VelocityTracker.java | 135 public void computeCurrentVelocity(int units) { in computeCurrentVelocity() method in VelocityTracker 152 public void computeCurrentVelocity(int units, float maxVelocity) { in computeCurrentVelocity() method in VelocityTracker
|
D | GestureDetector.java | 534 mVelocityTracker.computeCurrentVelocity(1000, mMaximumFlingVelocity); in onTouchEvent() 644 velocityTracker.computeCurrentVelocity(1000, mMaximumFlingVelocity); in onTouchEvent()
|
/frameworks/base/core/jni/ |
D | android_view_VelocityTracker.cpp | 52 void computeCurrentVelocity(int32_t units, float maxVelocity); 81 void VelocityTrackerState::computeCurrentVelocity(int32_t units, float maxVelocity) { in computeCurrentVelocity() function in android::VelocityTrackerState 176 state->computeCurrentVelocity(units, maxVelocity); in android_view_VelocityTracker_nativeComputeCurrentVelocity()
|
/frameworks/support/v4/java/android/support/v4/view/ |
D | GestureDetectorCompat.java | 263 mVelocityTracker.computeCurrentVelocity(1000, mMaximumFlingVelocity); in onTouchEvent() 372 velocityTracker.computeCurrentVelocity(1000, mMaximumFlingVelocity); in onTouchEvent()
|
/frameworks/base/docs/html/training/gestures/ |
D | movement.jd | 130 // computeCurrentVelocity(). Then call getXVelocity() 132 mVelocityTracker.computeCurrentVelocity(1000);
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | RotarySelector.java | 547 velocityTracker.computeCurrentVelocity(1000, mMaximumVelocity); in onTouchEvent() 567 velocityTracker.computeCurrentVelocity(1000, mMaximumVelocity); in onTouchEvent()
|
D | SwipeDismissLayout.java | 317 mVelocityTracker.computeCurrentVelocity(1000);
|
D | PointerLocationView.java | 576 mVelocity.computeCurrentVelocity(1); in onPointerEvent() 579 mAltVelocity.computeCurrentVelocity(1); in onPointerEvent()
|
D | ResolverDrawerLayout.java | 362 mVelocityTracker.computeCurrentVelocity(1000); in onTouchEvent()
|
/frameworks/support/design/src/android/support/design/widget/ |
D | HeaderBehavior.java | 170 mVelocityTracker.computeCurrentVelocity(1000); in onTouchEvent()
|
D | BottomSheetBehavior.java | 563 mVelocityTracker.computeCurrentVelocity(1000, mMaximumVelocity); in getYVelocity()
|
/frameworks/base/core/java/android/inputmethodservice/ |
D | KeyboardView.java | 407 mSwipeTracker.computeCurrentVelocity(1000); in initGestureDetector() 1528 public void computeCurrentVelocity(int units) { in computeCurrentVelocity() method in KeyboardView.SwipeTracker 1529 computeCurrentVelocity(units, Float.MAX_VALUE); in computeCurrentVelocity() 1532 public void computeCurrentVelocity(int units, float maxVelocity) { in computeCurrentVelocity() method in KeyboardView.SwipeTracker
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | ExpandHelper.java | 371 mVelocityTracker.computeCurrentVelocity(1000); in getCurrentVelocity()
|
D | SwipeHelper.java | 579 mVelocityTracker.computeCurrentVelocity(1000 /* px/sec */, getMaxVelocity());
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/ |
D | TaskStackViewTouchHandler.java | 328 mVelocityTracker.computeCurrentVelocity(1000, mMaximumVelocity); in handleTouchEvent()
|
/frameworks/base/core/java/android/widget/ |
D | SlidingDrawer.java | 433 velocityTracker.computeCurrentVelocity(mVelocityUnits); in onTouchEvent()
|
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/helper/ |
D | ItemTouchHelper.java | 1208 mVelocityTracker.computeCurrentVelocity(PIXELS_PER_SECOND, in checkHorizontalSwipe() 1237 mVelocityTracker.computeCurrentVelocity(PIXELS_PER_SECOND, in checkVerticalSwipe()
|
/frameworks/support/v4/java/android/support/v4/widget/ |
D | ViewDragHelper.java | 1404 mVelocityTracker.computeCurrentVelocity(1000, mMaxVelocity); in releaseViewForPointerUp()
|