Home
last modified time | relevance | path

Searched refs:dialogDelegate (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/bluetooth/qsdialog/
DBluetoothTileDialogViewModel.kt94 val dialogDelegate = createBluetoothTileDialog() in showDialog() constant
95 val dialog = dialogDelegate.createDialog() in showDialog()
120 dialogDelegate.apply { in showDialog()
138 dialogDelegate.animateProgressBar(dialog, true) in showDialog()
153 dialogDelegate.onAudioSharingButtonUpdated( in showDialog()
159 dialogDelegate.onAudioSharingButtonUpdated(dialog, GONE, null) in showDialog()
169 dialogDelegate.onBluetoothStateUpdated( in showDialog()
186 dialogDelegate.bluetoothStateToggle in showDialog()
189 dialogDelegate.animateProgressBar(dialog, true) in showDialog()
195 dialogDelegate.deviceItemClick in showDialog()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/chips/ui/viewmodel/
DOngoingActivityChipViewModel.kt38 dialogDelegate: SystemUIDialog.Delegate, in <lambda>()
42 val dialog = dialogDelegate.createDialog() in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DSystemUIDialogFactory.kt51 dialogDelegate: DialogDelegate<SystemUIDialog> = object : DialogDelegate<SystemUIDialog> {}, in create()
63 dialogDelegate,
DSystemUIDialog.java179 private SystemUIDialog create(DialogDelegate<SystemUIDialog> dialogDelegate, in create() argument
189 dialogDelegate); in create()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/chips/ui/viewmodel/
DOngoingActivityChipViewModelTest.kt37 private val dialogDelegate = SystemUIDialog.Delegate { mockSystemUIDialog } in <lambda>() constant
54 createDialogLaunchOnClickListener(dialogDelegate, dialogTransitionAnimator) in createDialogLaunchOnClickListener_showsDialogOnClick()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/tiles/
DRecordIssueTileTest.kt78 @Mock private lateinit var dialogDelegate: RecordIssueDialogDelegate variable in com.android.systemui.qs.tiles.RecordIssueTileTest
88 whenever(delegateFactory.create(any())).thenReturn(dialogDelegate) in setUp()
89 whenever(dialogDelegate.createDialog()).thenReturn(dialog) in setUp()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/impl/saver/domain/interactor/
DDataSaverTileUserActionInteractor.kt78 val dialogDelegate = in <lambda>() constant
86 val dialog = systemUIDialogFactory.create(dialogDelegate, context) in <lambda>()