Home
last modified time | relevance | path

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

/aosp12/packages/apps/Launcher3/quickstep/tests/src/com/android/launcher3/taskbar/
H A DTaskbarNavButtonControllerTest.java7 import static com.android.launcher3.taskbar.TaskbarNavButtonController.BUTTON_RECENTS;
96 mNavButtonController.onButtonClick(BUTTON_RECENTS); in testPressRecents()
103 mNavButtonController.onButtonClick(BUTTON_RECENTS); in testPressRecentsWithScreenPinned()
109 mNavButtonController.onButtonLongClick(BUTTON_RECENTS); in testLongPressBackRecentsNotPinned()
117 mNavButtonController.onButtonLongClick(BUTTON_RECENTS); in testLongPressBackRecentsPinned()
125 mNavButtonController.onButtonLongClick(BUTTON_RECENTS); in testLongPressBackRecentsTooLongPinned()
138 mNavButtonController.onButtonLongClick(BUTTON_RECENTS); in testLongPressBackRecentsMultipleAttemptPinned()
148 mNavButtonController.onButtonLongClick(BUTTON_RECENTS); in testLongPressBackRecentsMultipleAttemptPinned()
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/
H A DTaskbarNavButtonController.java56 BUTTON_RECENTS,
65 static final int BUTTON_RECENTS = BUTTON_HOME << 1; field in TaskbarNavButtonController
66 static final int BUTTON_IME_SWITCH = BUTTON_RECENTS << 1;
69 private static final int SCREEN_UNPIN_COMBO = BUTTON_BACK | BUTTON_RECENTS;
93 case BUTTON_RECENTS: in onButtonClick()
114 case BUTTON_RECENTS: in onButtonLongClick()
H A DNavbarButtonsViewController.java23 import static com.android.launcher3.taskbar.TaskbarNavButtonController.BUTTON_RECENTS;
282 View recentsButton = addButton(R.drawable.ic_sysbar_recent, BUTTON_RECENTS, in initButtons()