Home
last modified time | relevance | path

Searched refs:MotionEvent (Results 1 – 25 of 506) sorted by relevance

12345678910>>...21

/packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
DTestEvents.java22 import android.view.MotionEvent;
23 import android.view.MotionEvent.PointerCoords;
24 import android.view.MotionEvent.PointerProperties;
40 public static final MotionEvent CLICK =
42 public static final MotionEvent CTRL_CLICK =
44 public static final MotionEvent ALT_CLICK =
46 public static final MotionEvent SHIFT_CLICK =
48 public static final MotionEvent SECONDARY_CLICK =
50 public static final MotionEvent TERTIARY_CLICK =
58 public static final MotionEvent TAP =
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
DDragDriver.java21 import android.view.MotionEvent;
31 protected final Consumer<MotionEvent> mSecondaryEventConsumer;
40 public DragDriver(EventListener eventListener, Consumer<MotionEvent> sec) { in DragDriver()
48 public boolean onTouchEvent(MotionEvent ev) { in onTouchEvent()
55 public boolean onInterceptTouchEvent(MotionEvent ev) { in onInterceptTouchEvent()
70 Consumer<MotionEvent> sec) { in create()
90 SystemDragDriver(DragController dragController, Consumer<MotionEvent> sec) { in SystemDragDriver()
96 public boolean onInterceptTouchEvent(MotionEvent ev) { in onInterceptTouchEvent()
107 motionAction = MotionEvent.ACTION_DOWN; in simulateSecondaryMotionEvent()
110 motionAction = MotionEvent.ACTION_MOVE; in simulateSecondaryMotionEvent()
[all …]
/packages/apps/DocumentsUI/src/com/android/documentsui/base/
DEvents.java20 import android.view.MotionEvent;
27 public static boolean isMouseEvent(MotionEvent e) { in isMouseEvent()
28 return e.getToolType(0) == MotionEvent.TOOL_TYPE_MOUSE; in isMouseEvent()
31 public static boolean isActionDown(MotionEvent e) { in isActionDown()
32 return e.getActionMasked() == MotionEvent.ACTION_DOWN; in isActionDown()
35 public static boolean isActionUp(MotionEvent e) { in isActionUp()
36 return e.getActionMasked() == MotionEvent.ACTION_UP; in isActionUp()
39 public static boolean isMultiPointerActionDown(MotionEvent e) { in isMultiPointerActionDown()
40 return e.getActionMasked() == MotionEvent.ACTION_POINTER_DOWN; in isMultiPointerActionDown()
43 public static boolean isMultiPointerActionUp(MotionEvent e) { in isMultiPointerActionUp()
[all …]
/packages/modules/AdServices/adservices/tests/unittest/service-core/measurement/src/com/android/adservices/service/measurement/inputverification/
DClickVerifierTest.java32 import android.view.MotionEvent;
79 InputEvent eventOutsideRange = MotionEvent.obtain(0, 0, MotionEvent.ACTION_DOWN, 0, 0, 0); in testInputEventOutsideTimeRangeReturnsFalse()
91 InputEvent eventInsideRange = MotionEvent.obtain(0, 0, MotionEvent.ACTION_DOWN, 0, 0, 0); in testVerifiedInputEventInsideTimeRangeReturnsTrue()
105 InputEvent inputEvent = MotionEvent.obtain(0, 0, MotionEvent.ACTION_DOWN, 0, 0, 0); in testInputEventNotValidatedBySystem()
119 InputEvent inputEvent = MotionEvent.obtain(0, 0, MotionEvent.ACTION_DOWN, 0, 0, 0); in testInputEvent_verifyByInputEventFlagDisabled_Verified()
134 InputEvent inputEvent = MotionEvent.obtain(0, 0, MotionEvent.ACTION_DOWN, 0, 0, 0); in testVerifiedInputEvent_underUseLimit_verified()
154 InputEvent inputEvent = MotionEvent.obtain(0, 0, MotionEvent.ACTION_DOWN, 0, 0, 0); in testVerifiedInputEvent_overUseLimit_notVerified()
175 InputEvent inputEvent1 = MotionEvent.obtain(0, 0, MotionEvent.ACTION_DOWN, 0, 0, 0); in testMultipleUnverifiedInputEvents_allVerified()
176 InputEvent inputEvent2 = MotionEvent.obtain(10, 10, MotionEvent.ACTION_DOWN, 0, 0, 0); in testMultipleUnverifiedInputEvents_allVerified()
177 InputEvent inputEvent3 = MotionEvent.obtain(20, 20, MotionEvent.ACTION_DOWN, 0, 0, 0); in testMultipleUnverifiedInputEvents_allVerified()
[all …]
/packages/apps/Launcher3/tests/multivalentTests/src/com/android/launcher3/util/
DTouchUtilTest.kt20 import android.view.MotionEvent
34 val ev = MotionEvent.obtain(200, 300, MotionEvent.ACTION_MOVE, 1.0f, 0.0f, 0) in isMouseRightClickDownOrMove_onMouseRightButton_returnsTrue()
36 ev.buttonState = MotionEvent.BUTTON_SECONDARY in isMouseRightClickDownOrMove_onMouseRightButton_returnsTrue()
43 val ev = MotionEvent.obtain(200, 300, MotionEvent.ACTION_MOVE, 1.0f, 0.0f, 0) in isMouseRightClickDownOrMove_onMouseLeftButton_returnsFalse()
45 ev.buttonState = MotionEvent.BUTTON_PRIMARY in isMouseRightClickDownOrMove_onMouseLeftButton_returnsFalse()
52 val ev = MotionEvent.obtain(200, 300, MotionEvent.ACTION_MOVE, 1.0f, 0.0f, 0) in isMouseRightClickDownOrMove_onMouseTertiaryButton_returnsFalse()
54 ev.buttonState = MotionEvent.BUTTON_TERTIARY in isMouseRightClickDownOrMove_onMouseTertiaryButton_returnsFalse()
61 val ev = MotionEvent.obtain(200, 300, MotionEvent.ACTION_MOVE, 1.0f, 0.0f, 0) in isMouseRightClickDownOrMove_onDpadRightButton_returnsFalse()
63 ev.buttonState = MotionEvent.BUTTON_SECONDARY in isMouseRightClickDownOrMove_onDpadRightButton_returnsFalse()
/packages/apps/Launcher3/tests/multivalentTests/src/com/android/launcher3/testcomponent/
DTouchEventGenerator.java21 import android.view.MotionEvent;
22 import android.view.MotionEvent.PointerCoords;
23 import android.view.MotionEvent.PointerProperties;
71 void onTouchEvent(MotionEvent event); in onTouchEvent()
89 action = MotionEvent.ACTION_DOWN; in put()
91 action = MotionEvent.ACTION_POINTER_DOWN; in put()
93 action |= id << MotionEvent.ACTION_POINTER_INDEX_SHIFT; in put()
124 generateEvent(MotionEvent.ACTION_MOVE, ms); in move()
160 action = MotionEvent.ACTION_UP; in lift()
162 action = MotionEvent.ACTION_POINTER_UP; in lift()
[all …]
/packages/apps/Camera2/src/com/android/camera/ui/
DFilmstripGestureRecognizer.java23 import android.view.MotionEvent;
61 public boolean onTouchEvent(MotionEvent event) { in onTouchEvent()
64 if (event.getAction() == MotionEvent.ACTION_UP) { in onTouchEvent()
70 public boolean onGenericMotionEvent(MotionEvent event) { in onGenericMotionEvent()
73 case MotionEvent.ACTION_SCROLL: { in onGenericMotionEvent()
74 final float hscroll = event.getAxisValue(MotionEvent.AXIS_HSCROLL); in onGenericMotionEvent()
75 final float vscroll = -event.getAxisValue(MotionEvent.AXIS_VSCROLL); in onGenericMotionEvent()
90 public void onLongPress(MotionEvent e) { in onLongPress()
96 MotionEvent e1, MotionEvent e2, float dx, float dy) { in onScroll()
101 public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, in onFling()
[all …]
/packages/apps/TvSettings/TwoPanelSettingsLib/src/com/android/tv/twopanelsettings/
DTwoPanelScrollView.java20 import android.view.MotionEvent;
40 public boolean onInterceptTouchEvent(MotionEvent ev) { in onInterceptTouchEvent()
42 case MotionEvent.ACTION_DOWN: in onInterceptTouchEvent()
43 case MotionEvent.ACTION_MOVE: in onInterceptTouchEvent()
44 case MotionEvent.ACTION_CANCEL: in onInterceptTouchEvent()
45 case MotionEvent.ACTION_UP: in onInterceptTouchEvent()
52 public boolean onTouchEvent(MotionEvent ev) { in onTouchEvent()
54 case MotionEvent.ACTION_DOWN: in onTouchEvent()
55 case MotionEvent.ACTION_MOVE: in onTouchEvent()
56 case MotionEvent.ACTION_CANCEL: in onTouchEvent()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DGestureRecognizer.java22 import android.view.MotionEvent;
35 boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY); in onFling()
57 public void onTouchEvent(MotionEvent event) { in onTouchEvent()
69 MotionEvent cancelEvent = MotionEvent.obtain( in cancelScale()
70 now, now, MotionEvent.ACTION_CANCEL, 0, 0, 0); in cancelScale()
78 public boolean onSingleTapUp(MotionEvent e) { in onSingleTapUp()
83 public boolean onDoubleTap(MotionEvent e) { in onDoubleTap()
89 MotionEvent e1, MotionEvent e2, float dx, float dy) { in onScroll()
95 public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, in onFling()
123 public void onDown(MotionEvent e) { in onDown()
[all …]
DDownUpDetector.java19 import android.view.MotionEvent;
23 void onDown(MotionEvent e); in onDown()
24 void onUp(MotionEvent e); in onUp()
34 private void setState(boolean down, MotionEvent e) { in setState()
44 public void onTouchEvent(MotionEvent ev) { in onTouchEvent()
45 switch (ev.getAction() & MotionEvent.ACTION_MASK) { in onTouchEvent()
46 case MotionEvent.ACTION_DOWN: in onTouchEvent()
50 case MotionEvent.ACTION_UP: in onTouchEvent()
51 case MotionEvent.ACTION_CANCEL: in onTouchEvent()
52 case MotionEvent.ACTION_POINTER_DOWN: // Multitouch event - abort. in onTouchEvent()
/packages/apps/Gallery2/src/com/android/gallery3d/util/
DMotionEventHelper.java20 import android.view.MotionEvent;
21 import android.view.MotionEvent.PointerCoords;
28 public static MotionEvent transformEvent(MotionEvent e, Matrix m) { in transformEvent()
39 private static MotionEvent transformEventNew(MotionEvent e, Matrix m) { in transformEventNew()
40 MotionEvent newEvent = MotionEvent.obtain(e); in transformEventNew()
46 private static MotionEvent transformEventOld(MotionEvent e, Matrix m) { in transformEventOld()
75 MotionEvent n = MotionEvent.obtain(downTime, eventTime, action, in transformEventOld()
82 private static int[] getPointerIds(MotionEvent e) { in getPointerIds()
91 private static PointerCoords[] getPointerCoords(MotionEvent e) { in getPointerCoords()
/packages/apps/Launcher3/src/com/android/launcher3/
DCheckLongPressHelper.java20 import android.view.MotionEvent;
60 public void onTouchEvent(MotionEvent ev) { in onTouchEvent()
62 case MotionEvent.ACTION_DOWN: { in onTouchEvent()
77 final MotionEvent actionUpEvent = MotionEvent.obtain(ev); in onTouchEvent()
78 actionUpEvent.setAction(MotionEvent.ACTION_UP); in onTouchEvent()
93 case MotionEvent.ACTION_CANCEL: in onTouchEvent()
94 case MotionEvent.ACTION_UP: in onTouchEvent()
97 case MotionEvent.ACTION_MOVE: in onTouchEvent()
178 private static boolean isStylusButtonPressed(MotionEvent event) { in isStylusButtonPressed()
179 return event.getToolType(0) == MotionEvent.TOOL_TYPE_STYLUS in isStylusButtonPressed()
[all …]
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
DDragGestureDetector.java20 import android.view.MotionEvent;
44 private void computeAveragePosition(MotionEvent event, float[] position) { in computeAveragePosition()
48 private void computeAveragePosition(MotionEvent event, float[] position, int ignore) { in computeAveragePosition()
64 public boolean onTouchEvent(MotionEvent event) { in onTouchEvent()
67 case MotionEvent.ACTION_DOWN: in onTouchEvent()
72 case MotionEvent.ACTION_POINTER_DOWN: in onTouchEvent()
77 case MotionEvent.ACTION_POINTER_UP: in onTouchEvent()
81 case MotionEvent.ACTION_MOVE: in onTouchEvent()
88 case MotionEvent.ACTION_CANCEL: in onTouchEvent()
89 case MotionEvent.ACTION_UP: in onTouchEvent()
[all …]
/packages/apps/Car/SystemUI/src/com/android/systemui/car/window/
DOverlayPanelViewController.java28 import android.view.MotionEvent;
160 if (action == MotionEvent.ACTION_UP) { in OverlayPanelViewController()
176 if (action == MotionEvent.ACTION_UP) { in OverlayPanelViewController()
232 protected boolean isOpeningAction(MotionEvent e) { in isOpeningAction()
234 return e.getActionMasked() == MotionEvent.ACTION_DOWN; in isOpeningAction()
238 return e.getActionMasked() == MotionEvent.ACTION_UP; in isOpeningAction()
248 protected boolean isClosingAction(MotionEvent e) { in isClosingAction()
250 return e.getActionMasked() == MotionEvent.ACTION_UP; in isClosingAction()
254 return e.getActionMasked() == MotionEvent.ACTION_DOWN; in isClosingAction()
313 protected void maybeCompleteAnimation(MotionEvent event) { in maybeCompleteAnimation()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/util/
DOverlayEdgeEffect.java21 import android.view.MotionEvent;
55 MotionEvent mv = MotionEvent.obtain(SystemClock.uptimeMillis(), SystemClock.uptimeMillis(), in onPullDistance()
56 MotionEvent.ACTION_MOVE, displacement, 0, 0); in onPullDistance()
65 public float onPullDistance(float deltaDistance, float displacement, MotionEvent ev) { in onPullDistance()
69 ev.setAction(MotionEvent.ACTION_DOWN); in onPullDistance()
92 MotionEvent mv = MotionEvent.obtain(SystemClock.uptimeMillis(), SystemClock.uptimeMillis(), in onRelease()
93 MotionEvent.ACTION_UP, mDistance, 0, 0); in onRelease()
104 public void onRelease(MotionEvent ev) { in onRelease()
107 ev.setAction(MotionEvent.ACTION_UP); in onRelease()
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/bots/
DGestureBot.java25 import android.view.MotionEvent;
26 import android.view.MotionEvent.PointerCoords;
27 import android.view.MotionEvent.PointerProperties;
61 Configurator.getInstance().setToolType(MotionEvent.TOOL_TYPE_FINGER); in gestureSelectFiles()
93 Configurator.getInstance().setToolType(MotionEvent.TOOL_TYPE_MOUSE); in bandSelection()
94 swipe(start.x, start.y, end.x, end.y, steps, MotionEvent.BUTTON_PRIMARY, false); in bandSelection()
100 Configurator.getInstance().setToolType(MotionEvent.TOOL_TYPE_FINGER); in fingerSelection()
101 swipe(start.x, start.y, end.x, end.y, steps, MotionEvent.BUTTON_PRIMARY, true); in fingerSelection()
148 MotionEvent event = getMotionEvent(mDownTime, mDownTime, MotionEvent.ACTION_DOWN, button, x, in touchDown()
155 MotionEvent event = getMotionEvent(mDownTime, eventTime, MotionEvent.ACTION_UP, 0, x, y); in touchUp()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
DSwapButton.java24 import android.view.MotionEvent;
54 public boolean onTouchEvent(MotionEvent me) { in onTouchEvent()
62 public boolean onDown(MotionEvent e) { in onDown()
67 public void onShowPress(MotionEvent e) { in onShowPress()
71 public boolean onSingleTapUp(MotionEvent e) { in onSingleTapUp()
77 public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) { in onScroll()
82 public void onLongPress(MotionEvent e) { in onLongPress()
86 public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) { in onFling()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/
DInputConsumerProxy.java18 import static android.view.MotionEvent.ACTION_CANCEL;
19 import static android.view.MotionEvent.ACTION_DOWN;
20 import static android.view.MotionEvent.ACTION_UP;
26 import android.view.MotionEvent;
78 if (ev instanceof MotionEvent) { in onInputConsumerEvent()
79 MotionEvent event = (MotionEvent) ev; in onInputConsumerEvent()
81 boolean isHoverEvent = action == MotionEvent.ACTION_HOVER_ENTER in onInputConsumerEvent()
82 || action == MotionEvent.ACTION_HOVER_MOVE in onInputConsumerEvent()
83 || action == MotionEvent.ACTION_HOVER_EXIT; in onInputConsumerEvent()
97 private boolean onInputConsumerMotionEvent(MotionEvent ev) { in onInputConsumerMotionEvent()
[all …]
DCachedEventDispatcher.java20 import android.view.MotionEvent;
31 private Consumer<MotionEvent> mConsumer;
33 private ArrayList<MotionEvent> mCache;
34 private MotionEvent mLastEvent;
36 public void dispatchEvent(MotionEvent event) { in dispatchEvent()
45 mLastEvent = MotionEvent.obtain(event); in dispatchEvent()
51 public void setConsumer(Consumer<MotionEvent> consumer) { in setConsumer()
58 MotionEvent ev = mCache.get(i); in setConsumer()
/packages/apps/Launcher3/quickstep/tests/src/com/android/quickstep/
DTaskViewTest.java35 import android.view.MotionEvent;
80 MotionEvent event = MotionEvent.obtain(0, 0, MotionEvent.ACTION_HOVER_ENTER, 0.0f, 0.0f, 0); in notShowBorderOnBorderDisabled()
81 mTaskView.onHoverEvent(MotionEvent.obtain(event)); in notShowBorderOnBorderDisabled()
123 MotionEvent event = MotionEvent.obtain(0, 0, MotionEvent.ACTION_HOVER_ENTER, 0.0f, 0.0f, 0); in presetBorderStatus()
124 mTaskView.onHoverEvent(MotionEvent.obtain(event)); in presetBorderStatus()
134 MotionEvent event = MotionEvent.obtain(0, 0, MotionEvent.ACTION_HOVER_ENTER, 0.0f, 0.0f, 0); in notShowBorderByDefault()
135 mTaskView.onHoverEvent(MotionEvent.obtain(event)); in notShowBorderByDefault()
DOrientationTouchTransformerTest.java39 import android.view.MotionEvent;
270 MotionEvent inRegion1_down = generateMotionEvent(MotionEvent.ACTION_DOWN, 10, y1); in applyTransform_taskNotFrozen_90Rotate_withTwoRegions()
271 MotionEvent inRegion1_up = generateMotionEvent(MotionEvent.ACTION_UP, 10, y1); in applyTransform_taskNotFrozen_90Rotate_withTwoRegions()
273 MotionEvent inRegion2 = generateMotionEvent(MotionEvent.ACTION_DOWN, 10, 10); in applyTransform_taskNotFrozen_90Rotate_withTwoRegions()
296 MotionEvent inRegion2 = generateAndTransformMotionEvent(MotionEvent.ACTION_DOWN, x1, 370); in applyTransform_90Rotate_inRotatedRegion()
307 final MotionEvent move1 = generateMotionEvent(MotionEvent.ACTION_MOVE, 100, 10); in testSimpleOrientationTouchTransformer()
315 final MotionEvent move2 = generateMotionEvent(MotionEvent.ACTION_MOVE, 100, 10); in testSimpleOrientationTouchTransformer()
322 final MotionEvent move3 = generateMotionEvent(MotionEvent.ACTION_MOVE, 100, 10); in testSimpleOrientationTouchTransformer()
353 private MotionEvent generateMotionEvent(int motionAction, float x, float y) { in generateMotionEvent()
354 return MotionEvent.obtain(0, 0, motionAction, x, y, 0); in generateMotionEvent()
[all …]
/packages/apps/Dialer/java/com/android/incallui/answer/impl/classifier/
DClassifierData.java20 import android.view.MotionEvent;
39 public void update(MotionEvent event) { in update()
42 if (action == MotionEvent.ACTION_DOWN) { in update()
58 if (action == MotionEvent.ACTION_UP in update()
59 || action == MotionEvent.ACTION_CANCEL in update()
60 || (action == MotionEvent.ACTION_POINTER_UP && i == event.getActionIndex())) { in update()
66 void cleanUp(MotionEvent event) { in cleanUp()
71 if (action == MotionEvent.ACTION_UP in cleanUp()
72 || action == MotionEvent.ACTION_CANCEL in cleanUp()
73 || (action == MotionEvent.ACTION_POINTER_UP && i == event.getActionIndex())) { in cleanUp()
/packages/services/Car/service/src/com/android/car/hal/
DInputHalService.java47 import android.view.MotionEvent;
48 import android.view.MotionEvent.PointerCoords;
49 import android.view.MotionEvent.PointerProperties;
83 private final Queue<MotionEvent> mLastFewDispatchedMotionEvents =
106 void onMotionEvent(MotionEvent event, int targetDisplay, int seat); in onMotionEvent()
492 MotionEvent event = MotionEvent.obtain(toUpTimeMillis(elapsedDownTimeNanos),
519 private void saveMotionEventInHistory(MotionEvent motionEvent) {
628 return MotionEvent.ACTION_DOWN;
630 return MotionEvent.ACTION_UP;
632 return MotionEvent.ACTION_MOVE;
[all …]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/
DEmojiPageKeyboardView.java23 import android.view.MotionEvent;
104 public boolean onHoverEvent(final MotionEvent event) { in onHoverEvent()
118 public boolean onTouchEvent(final MotionEvent e) { in onTouchEvent()
134 private Key getKey(final MotionEvent e) { in getKey()
168 public boolean onDown(final MotionEvent e) { in onDown()
187 public void onShowPress(final MotionEvent e) { in onShowPress()
192 public boolean onSingleTapUp(final MotionEvent e) { in onSingleTapUp()
216 public boolean onScroll(final MotionEvent e1, final MotionEvent e2, final float distanceX, in onScroll()
223 public boolean onFling(final MotionEvent e1, final MotionEvent e2, final float velocityX, in onFling()
230 public void onLongPress(final MotionEvent e) { in onLongPress()
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/
DSharedInputHandlerTest.java24 import android.view.MotionEvent;
81 new KeyEvent(0, 0, MotionEvent.ACTION_DOWN, KeyEvent.KEYCODE_A, 0, 0); in testUnrelatedButton_DoesNothing()
100 new KeyEvent(0, 0, MotionEvent.ACTION_DOWN, KeyEvent.KEYCODE_BACK, 0, 0); in testBackButton_CancelsSearch()
114 new KeyEvent(0, 0, MotionEvent.ACTION_DOWN, KeyEvent.KEYCODE_BACK, 0, 0); in testBackButton_ClearsSelection()
126 new KeyEvent(0, 0, MotionEvent.ACTION_DOWN, KeyEvent.KEYCODE_BACK, 0, 0); in testBackButton_PopsDirectory()
138 new KeyEvent(0, 0, MotionEvent.ACTION_DOWN, KeyEvent.KEYCODE_BACK, 0, 0); in testBackButton_CloseDrawer()
159 new KeyEvent(0, 0, MotionEvent.ACTION_DOWN, KeyEvent.KEYCODE_ESCAPE, 0, 0); in testEscButton_CancelsSearch()
172 new KeyEvent(0, 0, MotionEvent.ACTION_DOWN, KeyEvent.KEYCODE_ESCAPE, 0, 0); in testEscButton_ClearsSelection()
183 new KeyEvent(0, 0, MotionEvent.ACTION_DOWN, KeyEvent.KEYCODE_ESCAPE, 0, 0); in testEscButton_DoesNotPopDirectory()
194 new KeyEvent(0, 0, MotionEvent.ACTION_DOWN, KeyEvent.KEYCODE_DEL, 0, 0); in testDeleteButton_PopsDirectory()
[all …]

12345678910>>...21