HomeSort by relevance Sort by last modified time
    Searched refs:mSwipeThreshold (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
TrackingInputHandler.java 59 private float mSwipeThreshold;
107 mSwipeThreshold = 40 * density;
225 if (mTotalMotionY > mSwipeThreshold) {
228 } else if (mTotalMotionY < -mSwipeThreshold) {
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
KeyboardView.java 215 private int mSwipeThreshold;
372 mSwipeThreshold = (int) (500 * getResources().getDisplayMetrics().density);
396 if (velocityX > mSwipeThreshold && absY < absX && deltaX > travelX) {
403 } else if (velocityX < -mSwipeThreshold && absY < absX && deltaX < -travelX) {
410 } else if (velocityY < -mSwipeThreshold && absX < absY && deltaY < -travelY) {
417 } else if (velocityY > mSwipeThreshold && absX < absY / 2 && deltaY > travelY) {
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java 214 private int mSwipeThreshold;
375 mSwipeThreshold = (int) (500 * getResources().getDisplayMetrics().density);
403 if (velocityX > mSwipeThreshold && absY < absX && deltaX > travelX) {
410 } else if (velocityX < -mSwipeThreshold && absY < absX && deltaX < -travelX) {
417 } else if (velocityY < -mSwipeThreshold && absX < absY && deltaY < -travelY) {
424 } else if (velocityY > mSwipeThreshold && absX < absY / 2 && deltaY > travelY) {
    [all...]
  /frameworks/base/core/java/android/widget/
StackView.java 133 private int mSwipeThreshold;
572 mSwipeThreshold = Math.round(SWIPE_THRESHOLD_RATIO * newSlideAmount);
827 if (deltaY > mSwipeThreshold && mSwipeGestureType == GESTURE_SLIDE_DOWN
840 } else if (deltaY < -mSwipeThreshold && mSwipeGestureType == GESTURE_SLIDE_UP
    [all...]

Completed in 74 milliseconds