Searched refs:createConfirmationDialog (Results 1 – 6 of 6) sorted by relevance
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/management/ |
H A D | PanelConfirmationDialogFactoryTest.kt | 47 factory.createConfirmationDialog(context, appName) {} 63 factory.createConfirmationDialog(context, "") { response = it } 80 factory.createConfirmationDialog(context, "") { response = it } 97 factory.createConfirmationDialog(context, "") { response = it }
|
H A D | ControlsProviderSelectorActivityTest.kt | 157 whenever(dialogFactory.createConfirmationDialog(any(), any(), any())).thenReturn(dialog) 160 verify(dialogFactory).createConfirmationDialog(any(), eq(label), any()) 177 whenever(dialogFactory.createConfirmationDialog(any(), any(), any())).thenReturn(dialog) 182 verify(dialogFactory).createConfirmationDialog(any(), any(), capture(captor)) 207 whenever(dialogFactory.createConfirmationDialog(any(), any(), any())).thenReturn(dialog) 212 verify(dialogFactory).createConfirmationDialog(any(), any(), capture(captor))
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/management/ |
H A D | PanelConfirmationDialogFactory.kt | 42 fun createConfirmationDialog( regex
|
H A D | ControlsProviderSelectorActivity.kt | 187 dialog = panelConfirmationDialogFactory.createConfirmationDialog(this, appName) { ok ->
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/ui/ |
H A D | ChallengeDialogs.kt | 128 fun createConfirmationDialog(cvh: ControlViewHolder, onCancel: () -> Unit): Dialog? { regex
|
H A D | ControlViewHolder.kt | 222 lastChallengeDialog = ChallengeDialogs.createConfirmationDialog(
|