Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/applications/instantapps/
DInstantAppButtonsController.java54 public static final int DLG_CLEAR_APP = DLG_BASE + 1; field in InstantAppButtonsController
82 clearDataButton.setOnClickListener(v -> mShowDialogDelegate.showDialog(DLG_CLEAR_APP)); in bindButtons()
86 if (id == DLG_CLEAR_APP) { in createDialog()
/packages/apps/Settings/tests/robotests/src/com/android/settings/applications/
DInstalledAppDetailsTest.java319 when(mockController.createDialog(InstantAppButtonsController.DLG_CLEAR_APP)) in instantApps_buttonControllerHandlesDialog()
321 assertThat(mAppDetail.createDialog(InstantAppButtonsController.DLG_CLEAR_APP, 0)) in instantApps_buttonControllerHandlesDialog()
323 verify(mockController).createDialog(InstantAppButtonsController.DLG_CLEAR_APP); in instantApps_buttonControllerHandlesDialog()
/packages/apps/Settings/tests/robotests/src/com/android/settings/applications/instantapps/
DInstantAppButtonsControllerTest.java150 verify(mockShowDialogDelegate).showDialog(InstantAppButtonsController.DLG_CLEAR_APP); in testClearListenerShowsDialog()