Searched refs:mTouchDownY (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarGestureHelper.java73 private int mTouchDownY; field in class:NavigationBarGestureHelper
187 mTouchDownY = (int) event.getY();
194 && mTouchDownY >= recentsButton.getTop()
195 && mTouchDownY <= recentsButton.getBottom();
207 int yDiff = Math.abs(y - mTouchDownY);
H A DQuickStepController.java75 private int mTouchDownY; field in class:QuickStepController
212 mTouchDownY = y;
228 int yDiff = Math.abs(y - mTouchDownY);
239 touchDown = mTouchDownY;
/frameworks/base/core/java/com/android/internal/widget/
H A DDecorCaptionView.java94 private int mTouchDownY; field in class:DecorCaptionView
200 mTouchDownY = y;
245 return Math.abs(x - mTouchDownX) > mDragSlop || Math.abs(y - mTouchDownY) > mDragSlop;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyButtonView.java63 private int mTouchDownY; field in class:KeyButtonView
217 mTouchDownY = (int) ev.getRawY();
237 boolean exceededTouchSlopY = Math.abs(y - mTouchDownY) > (mIsVertical

Completed in 11 milliseconds