Searched refs:getVelocity (Results 1 – 9 of 9) sorted by relevance
/frameworks/base/core/jni/ |
D | android_view_VelocityTracker.cpp | 53 void getVelocity(int32_t id, float* outVx, float* outVy); 89 mVelocityTracker.getVelocity(id, &vx, &vy); in computeCurrentVelocity() 111 void VelocityTrackerState::getVelocity(int32_t id, float* outVx, float* outVy) { in getVelocity() function in android::VelocityTrackerState 183 state->getVelocity(id, &vx, NULL); in android_view_VelocityTracker_nativeGetXVelocity() 191 state->getVelocity(id, NULL, &vy); in android_view_VelocityTracker_nativeGetYVelocity()
|
/frameworks/native/libs/input/ |
D | VelocityControl.cpp | 73 if (mVelocityTracker.getVelocity(0, &vx, &vy)) { in move()
|
D | VelocityTracker.cpp | 345 bool VelocityTracker::getVelocity(uint32_t id, float* outVx, float* outVy) const { in getVelocity() function in android::VelocityTracker
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | SwipeHelper.java | 144 private float getVelocity(VelocityTracker vt) { in getVelocity() method in SwipeHelper 641 float velocity = getVelocity(mVelocityTracker); in onTouchEvent() 707 float velocity = getVelocity(mVelocityTracker); in swipedFastEnough()
|
/frameworks/native/include/input/ |
D | VelocityTracker.h | 91 bool getVelocity(uint32_t id, float* outVx, float* outVy) const;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/ |
D | PipTouchState.java | 205 public PointF getVelocity() {
|
D | PipTouchHandler.java | 669 final PointF vel = touchState.getVelocity();
|
/frameworks/native/libs/input/tests/ |
D | VelocityTracker_test.cpp | 202 vt.getVelocity(DEFAULT_POINTER_ID, &Vx, &Vy); in computeAndCheckVelocity()
|
/frameworks/native/services/inputflinger/ |
D | InputReader.cpp | 5666 if (mPointerGesture.velocityTracker.getVelocity(id, &vx, &vy)) { in preparePointerGestures()
|