Home
last modified time | relevance | path

Searched refs:dragDetector (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/windowdecor/
DDragDetectorTest.kt52 private lateinit var dragDetector: DragDetector variable in com.android.wm.shell.windowdecor.DragDetectorTest
60 dragDetector = DragDetector(eventHandler) in setUp()
61 dragDetector.setTouchSlop(SLOP) in setUp()
74 assertTrue(dragDetector.onMotionEvent(createMotionEvent(MotionEvent.ACTION_DOWN))) in testNoMove_passesDownAndUp()
80 assertTrue(dragDetector.onMotionEvent(createMotionEvent(MotionEvent.ACTION_UP))) in testNoMove_passesDownAndUp()
93 assertFalse(dragDetector.onMotionEvent(createMotionEvent(MotionEvent.ACTION_DOWN))) in testMoveInSlop_touch_passesDownAndUp()
101 dragDetector.onMotionEvent(createMotionEvent(MotionEvent.ACTION_MOVE, newX, Y))) in testMoveInSlop_touch_passesDownAndUp()
106 assertTrue(dragDetector.onMotionEvent(createMotionEvent(MotionEvent.ACTION_UP, newX, Y))) in testMoveInSlop_touch_passesDownAndUp()
119 assertFalse(dragDetector.onMotionEvent( in testMoveInSlop_mouse_passesDownMoveAndUp()
127 assertTrue(dragDetector.onMotionEvent( in testMoveInSlop_mouse_passesDownMoveAndUp()
[all …]
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/windowdecor/
DCaptionWindowDecoration.java160 void setDragDetector(DragDetector dragDetector) { in setDragDetector() argument
161 mDragDetector = dragDetector; in setDragDetector()
DDesktopModeWindowDecoration.java185 void setDragDetector(DragDetector dragDetector) { in setDragDetector() argument
186 mDragDetector = dragDetector; in setDragDetector()