Searched refs:absX (Results 1 – 3 of 3) sorted by relevance
409 final float absX = Math.abs(velocityX); in initGestureDetector()419 if (velocityX > mSwipeThreshold && absY < absX && deltaX > travelX) { in initGestureDetector()426 } else if (velocityX < -mSwipeThreshold && absY < absX && deltaX < -travelX) { in initGestureDetector()433 } else if (velocityY < -mSwipeThreshold && absX < absY && deltaY < -travelY) { in initGestureDetector()440 } else if (velocityY > mSwipeThreshold && absX < absY / 2 && deltaY > travelY) { in initGestureDetector()
102 public boolean isInRange(float absX) { in isInRange() argument103 return (absX >= Math.floor(min)) && (absX <= Math.ceil(max)); in isInRange()
6580 final float absX = Math.abs(mAccumulatedX);6582 if (absX >= absY) {6583 if (absX >= mConfigTickDistance) {