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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DTabletStatusBar.java1247 VelocityTracker mVT; field in class:TabletStatusBar.NotificationTriggerTouchListener
1282 mVT = VelocityTracker.obtain();
1290 if (mVT != null) {
1291 mVT.addMovement(event);
1292 mVT.computeCurrentVelocity(1000); // pixels per second
1294 if (mVT.getYVelocity() < -mNotificationFlingVelocity) {
1298 mVT.recycle();
1299 mVT = null;
1306 if (mVT != null) {
1319 mVT
[all...]

Completed in 142 milliseconds