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

  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/actions/
TouchView.java 86 float absY = Math.abs(velocityY);
91 if (velocityX > swipeThreshold && absY < absX && deltaX > travelX) {
93 } else if (velocityX < -swipeThreshold && absY < absX && deltaX < -travelX) {
95 } else if (velocityY < -swipeThreshold && absX < absY && deltaY < -travelY) {
97 } else if (velocityY > swipeThreshold && absX < absY / 2 && deltaY > travelY) {
  /external/skia/src/core/
SkGeometry.cpp     [all...]
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java 390 final float absY = Math.abs(velocityY);
399 if (velocityX > mSwipeThreshold && absY < absX && deltaX > travelX) {
406 } else if (velocityX < -mSwipeThreshold && absY < absX && deltaX < -travelX) {
413 } else if (velocityY < -mSwipeThreshold && absX < absY && deltaY < -travelY) {
420 } else if (velocityY > mSwipeThreshold && absX < absY / 2 && deltaY > travelY) {
    [all...]

Completed in 60 milliseconds