Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/management/
DControlsProviderSelectorActivityTest.kt82 @Mock lateinit var dialogFactory: PanelConfirmationDialogFactory variable in com.android.systemui.controls.management.ControlsProviderSelectorActivityTest
105 dialogFactory, in create()
142 verifyNoMoreInteractions(dialogFactory) in testOnAppSelectedForNonPanelStartsFavoritingActivity()
161 whenever(dialogFactory.createConfirmationDialog(any(), any(), any())).thenReturn(dialog) in testOnAppSelectedForPanelTriggersDialog()
164 verify(dialogFactory).createConfirmationDialog(any(), eq(label), any()) in testOnAppSelectedForPanelTriggersDialog()
181 whenever(dialogFactory.createConfirmationDialog(any(), any(), any())).thenReturn(dialog) in dialogAcceptAddsPackage()
186 verify(dialogFactory).createConfirmationDialog(any(), any(), capture(captor)) in dialogAcceptAddsPackage()
208 whenever(dialogFactory.createConfirmationDialog(any(), any(), any())).thenReturn(dialog) in dialogCancelDoesntAddPackage()
213 verify(dialogFactory).createConfirmationDialog(any(), any(), capture(captor)) in dialogCancelDoesntAddPackage()
229 dialogFactory: PanelConfirmationDialogFactory,
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/user/
DUserSwitchDialogController.kt53 private val dialogFactory: (Context) -> SystemUIDialog in <lambda>() constant in com.android.systemui.qs.user.UserSwitchDialogController
84 with(dialogFactory(context)) { in <lambda>()