Home
last modified time | relevance | path

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

/packages/apps/Launcher3/tests/src/com/android/launcher3/touch/
DSingleAxisSwipeDetectorTest.java19 import static com.android.launcher3.touch.SingleAxisSwipeDetector.DIRECTION_NEGATIVE;
103 mDetector.setDetectableScrollConditions(DIRECTION_NEGATIVE, false); in testDragStart_verticalNegative()
134 mDetector.setDetectableScrollConditions(DIRECTION_NEGATIVE, false); in testDragStart_horizontalNegative()
158 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;
165 return (mScrollDirections & DIRECTION_NEGATIVE) > 0 && mDir.isNegative(displacement); in canScrollNegative()
DAbstractStateChangeTouchController.java134 swipeDirection |= SingleAxisSwipeDetector.DIRECTION_NEGATIVE; in getSwipeDirection()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/
DTaskbarStashViaTouchController.kt24 import com.android.launcher3.touch.SingleAxisSwipeDetector.DIRECTION_NEGATIVE
61 swipeDownDetector.setDetectableScrollConditions(DIRECTION_NEGATIVE, false)
/packages/apps/Launcher3/src/com/android/launcher3/views/
DAbstractSlideInView.java270 ? SingleAxisSwipeDetector.DIRECTION_NEGATIVE : 0; in onControllerInterceptTouchEvent()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/orientation/
DSeascapePagedViewHandler.kt336 else SingleAxisSwipeDetector.DIRECTION_NEGATIVE in getUpDirection()
DLandscapePagedViewHandler.kt296 if (isRtl) SingleAxisSwipeDetector.DIRECTION_NEGATIVE in getUpDirection()