Home
last modified time | relevance | path

Searched refs:getVelocity (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/core/jni/
Dandroid_view_VelocityTracker.cpp52 void getVelocity(int32_t id, float* outVx, float* outVy);
88 mVelocityTracker.getVelocity(id, &vx, &vy); in computeCurrentVelocity()
110 void VelocityTrackerState::getVelocity(int32_t id, float* outVx, float* outVy) { in getVelocity() function in android::VelocityTrackerState
182 state->getVelocity(id, &vx, NULL); in android_view_VelocityTracker_nativeGetXVelocity()
190 state->getVelocity(id, NULL, &vy); in android_view_VelocityTracker_nativeGetYVelocity()
/frameworks/native/libs/input/
DVelocityControl.cpp73 if (mVelocityTracker.getVelocity(0, &vx, &vy)) { in move()
DVelocityTracker.cpp335 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/recents/views/
DSwipeHelper.java118 private float getVelocity(VelocityTracker vt) { in getVelocity() method in SwipeHelper
353 float velocity = getVelocity(velocityTracker); in endSwipe()
/frameworks/native/include/input/
DVelocityTracker.h91 bool getVelocity(uint32_t id, float* outVx, float* outVy) const;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DSwipeHelper.java122 private float getVelocity(VelocityTracker vt) { in getVelocity() method in SwipeHelper
443 float velocity = getVelocity(mVelocityTracker); in onTouchEvent()
/frameworks/native/services/inputflinger/
DInputReader.cpp4826 if (mPointerGesture.velocityTracker.getVelocity(id, &vx, &vy)) { in preparePointerGestures()