Home
last modified time | relevance | path

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

/packages/apps/Launcher3/tests/src/com/android/launcher3/touch/
DSwipeDetectorTest.java89 mDetector.setDetectableScrollConditions(SwipeDetector.DIRECTION_NEGATIVE, false); in testDragStart_verticalNegative()
118 mDetector.setDetectableScrollConditions(SwipeDetector.DIRECTION_NEGATIVE, false); in testDragStart_horizontalNegative()
140 mDetector.setDetectableScrollConditions(SwipeDetector.DIRECTION_NEGATIVE, false); in testDragStart_horizontalRtlNegative()
/packages/apps/Launcher3/src/com/android/launcher3/touch/
DSwipeDetector.java47 public static final int DIRECTION_NEGATIVE = 1 << 1; field in SwipeDetector
48 public static final int DIRECTION_BOTH = DIRECTION_NEGATIVE | DIRECTION_POSITIVE;
279 if (((mScrollConditions & DIRECTION_NEGATIVE) > 0 && mDir.isNegative(mDisplacement)) || in shouldScrollStart()
DAbstractStateChangeTouchController.java167 swipeDirection |= SwipeDetector.DIRECTION_NEGATIVE; in getSwipeDirection()
/packages/apps/Launcher3/src/com/android/launcher3/views/
DAbstractSlideInView.java100 SwipeDetector.DIRECTION_NEGATIVE : 0; in onControllerInterceptTouchEvent()
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/touchcontrollers/
DTaskViewTouchController.java169 || !goingUp && ((scrollDirections & SwipeDetector.DIRECTION_NEGATIVE) == 0)) { in reInitAnimationController()