Home
last modified time | relevance | path

Searched refs:DIRECTION_NEGATIVE (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Launcher3/tests/src/com/android/launcher3/touch/
DSingleAxisSwipeDetectorTest.java19 import static com.android.launcher3.touch.SingleAxisSwipeDetector.DIRECTION_NEGATIVE;
98 mDetector.setDetectableScrollConditions(DIRECTION_NEGATIVE, false); in testDragStart_verticalNegative()
127 mDetector.setDetectableScrollConditions(DIRECTION_NEGATIVE, false); in testDragStart_horizontalNegative()
149 mDetector.setDetectableScrollConditions(DIRECTION_NEGATIVE, false); in testDragStart_horizontalRtlNegative()
/packages/apps/Launcher3/src/com/android/launcher3/touch/
DSingleAxisSwipeDetector.java34 public static final int DIRECTION_NEGATIVE = 1 << 1; field in SingleAxisSwipeDetector
35 public static final int DIRECTION_BOTH = DIRECTION_NEGATIVE | DIRECTION_POSITIVE;
163 return (mScrollDirections & DIRECTION_NEGATIVE) > 0 && mDir.isNegative(displacement); in canScrollNegative()
DSeascapePagedViewHandler.java127 : SingleAxisSwipeDetector.DIRECTION_NEGATIVE; in getUpDirection()
DLandscapePagedViewHandler.java312 return isRtl ? SingleAxisSwipeDetector.DIRECTION_NEGATIVE in getUpDirection()
DAbstractStateChangeTouchController.java128 swipeDirection |= SingleAxisSwipeDetector.DIRECTION_NEGATIVE; in getSwipeDirection()
/packages/apps/Launcher3/src/com/android/launcher3/views/
DAbstractSlideInView.java130 ? SingleAxisSwipeDetector.DIRECTION_NEGATIVE : 0; in onControllerInterceptTouchEvent()