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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPanelView.java61 private float mFlingGestureMaxOutputVelocityPx; // how fast can it really go? (should be a little field in class:PanelView
263 } else if (!mClosing && mVel > mFlingGestureMaxOutputVelocityPx) {
264 mVel = mFlingGestureMaxOutputVelocityPx;
313 mFlingGestureMaxOutputVelocityPx = res.getDimension(R.dimen.fling_gesture_max_output_velocity);
416 if (vel > mFlingGestureMaxOutputVelocityPx) {
417 vel = mFlingGestureMaxOutputVelocityPx;
H A DPhoneStatusBar.java145 private float mFlingGestureMaxOutputVelocityPx; // how fast can it really go? (should be a little field in class:PhoneStatusBar
2389 mFlingGestureMaxOutputVelocityPx = res.getDimension(R.dimen.fling_gesture_max_output_velocity);

Completed in 77 milliseconds