Home
last modified time | relevance | path

Searched refs:cancelListenerCaptor (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/external/
DTileServiceRequestControllerTest.kt191 val cancelListenerCaptor = in cancelListener_dismissResult() constant
203 verify(tileRequestDialog).setOnCancelListener(capture(cancelListenerCaptor)) in cancelListener_dismissResult()
205 cancelListenerCaptor.value.onCancel(tileRequestDialog) in cancelListener_dismissResult()
212 val cancelListenerCaptor = in dialogCancelled_logged() constant
218 verify(tileRequestDialog).setOnCancelListener(capture(cancelListenerCaptor)) in dialogCancelled_logged()
221 cancelListenerCaptor.value.onCancel(tileRequestDialog) in dialogCancelled_logged()
356 val cancelListenerCaptor = in interfaceThrowsRemoteException_doesntCrash() constant
374 verify(tileRequestDialog).setOnCancelListener(capture(cancelListenerCaptor)) in interfaceThrowsRemoteException_doesntCrash()
376 cancelListenerCaptor.value.onCancel(tileRequestDialog) in interfaceThrowsRemoteException_doesntCrash()
433 val cancelListenerCaptor = in cancelAndThenDismissSendsOnlyOnce() constant
[all …]
/frameworks/base/core/tests/coretests/src/com/android/internal/accessibility/
DAccessibilityShortcutControllerTest.java412 ArgumentCaptor<AlertDialog.OnCancelListener> cancelListenerCaptor = in testOnAccessibilityShortcut_ifCanceledFirstTime_showsWarningDialog() local
414 verify(mAlertDialogBuilder).setOnCancelListener(cancelListenerCaptor.capture()); in testOnAccessibilityShortcut_ifCanceledFirstTime_showsWarningDialog()
416 cancelListenerCaptor.getValue().onCancel(null); in testOnAccessibilityShortcut_ifCanceledFirstTime_showsWarningDialog()