/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/footer/domain/interactor/ |
H A D | FooterActionsInteractor.kt | 31 import com.android.systemui.animation.Expandable 77 fun showDeviceMonitoringDialog(quickSettingsContext: Context, expandable: Expandable?) 80 fun showForegroundServicesDialog(expandable: Expandable) 85 expandable: Expandable, 89 fun showSettings(expandable: Expandable) 92 fun showUserSwitcher(expandable: Expandable) 136 expandable: Expandable?, 147 override fun showForegroundServicesDialog(expandable: Expandable) { 153 expandable: Expandable, 163 override fun showSettings(expandable: Expandable) { [all …]
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/user/domain/model/ |
H A D | ShowDialogRequestModel.kt | 21 import com.android.systemui.animation.Expandable 27 open val expandable: Expandable? = null, 51 override val expandable: Expandable?, 55 override val expandable: Expandable?,
|
/aosp14/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/ |
H A D | Expandable.kt | 22 interface Expandable { regex 48 fun fromView(view: View): Expandable { 49 return object : Expandable {
|
/aosp14/frameworks/base/packages/SystemUI/compose/core/src/com/android/compose/animation/ |
H A D | Expandable.kt | 77 import com.android.systemui.animation.Expandable 116 fun Expandable( regex 122 onClick: ((Expandable) -> Unit)? = null, 124 content: @Composable (Expandable) -> Unit, 126 Expandable( 161 fun Expandable( regex 164 onClick: ((Expandable) -> Unit)? = null, 166 content: @Composable (Expandable) -> Unit, 175 movableContentOf { expandable: Expandable -> 307 content: @Composable (Expandable) -> Unit,
|
H A D | ExpandableController.kt | 46 import com.android.systemui.animation.Expandable 53 val expandable: Expandable 134 override val expandable: Expandable = 135 object : Expandable {
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/footer/ui/viewmodel/ |
H A D | FooterActionsViewModel.kt | 27 import com.android.systemui.animation.Expandable 216 private fun onSecurityButtonClicked(quickSettingsContext: Context, expandable: Expandable) { 224 private fun onForegroundServiceButtonClicked(expandable: Expandable) { 232 private fun onUserSwitcherClicked(expandable: Expandable) { 240 private fun onSettingsButtonClicked(expandable: Expandable) { 248 private fun onPowerButtonClicked(expandable: Expandable) {
|
H A D | FooterActionsForegroundServicesButtonViewModel.kt | 19 import com.android.systemui.animation.Expandable 27 val onClick: (Expandable) -> Unit,
|
H A D | FooterActionsSecurityButtonViewModel.kt | 20 import com.android.systemui.animation.Expandable 27 val onClick: ((quickSettingsContext: Context, Expandable) -> Unit)?,
|
H A D | FooterActionsButtonViewModel.kt | 21 import com.android.systemui.animation.Expandable 33 val onClick: (Expandable) -> Unit,
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/quickaffordance/ |
H A D | KeyguardQuickAffordanceConfig.kt | 25 import com.android.systemui.animation.Expandable 63 fun onTriggered(expandable: Expandable?): OnTriggeredResult 161 val expandable: Expandable?,
|
H A D | CameraQuickAffordanceConfig.kt | 25 import com.android.systemui.animation.Expandable 81 expandable: Expandable?
|
H A D | VideoCameraQuickAffordanceConfig.kt | 26 import com.android.systemui.animation.Expandable 96 expandable: Expandable?
|
H A D | QrCodeScannerKeyguardQuickAffordanceConfig.kt | 22 import com.android.systemui.animation.Expandable 88 expandable: Expandable?,
|
H A D | FlashlightQuickAffordanceConfig.kt | 22 import com.android.systemui.animation.Expandable 127 expandable: Expandable?
|
/aosp14/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/qs/footer/ui/compose/ |
H A D | FooterActions.kt | 68 import com.android.compose.animation.Expandable 73 import com.android.systemui.animation.Expandable 197 val onClick: ((Expandable) -> Unit)? = 240 Expandable( 260 onClick: (Expandable) -> Unit, 270 Expandable( 321 onClick: ((Expandable) -> Unit)?, 324 Expandable(
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/viewmodel/ |
H A D | KeyguardQuickAffordanceViewModel.kt | 19 import com.android.systemui.animation.Expandable 39 val expandable: Expandable?,
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/data/quickaffordance/ |
H A D | FakeKeyguardQuickAffordanceConfig.kt | 21 import com.android.systemui.animation.Expandable 47 expandable: Expandable?,
|
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/qs/ |
H A D | FakeFgsManagerController.kt | 19 import com.android.systemui.animation.Expandable 58 override fun showDialog(expandable: Expandable?) {}
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/user/ui/viewmodel/ |
H A D | StatusBarUserChipViewModel.kt | 22 import com.android.systemui.animation.Expandable 58 val onClick: (Expandable) -> Unit = { interactor.showUserSwitcher(it) }
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/user/ui/binder/ |
H A D | StatusBarUserChipViewBinder.kt | 23 import com.android.systemui.animation.Expandable 63 view.setOnClickListener { viewModel.onClick(Expandable.fromView(view)) }
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/footer/ui/binder/ |
H A D | FooterActionsViewBinder.kt | 34 import com.android.systemui.animation.Expandable 185 onClick(quickSettingsContext, Expandable.fromView(securityView)) 219 foregroundServices.onClick(Expandable.fromView(foregroundServicesWithTextView)) 229 foregroundServices.onClick(Expandable.fromView(foregroundServicesWithNumberView)) 252 buttonView.setOnClickListener { model.onClick(Expandable.fromView(buttonView)) }
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/footer/domain/interactor/ |
H A D | FooterActionsInteractorTest.kt | 30 import com.android.systemui.animation.Expandable 72 val expandable = mock<Expandable>() 83 val expandable = mock<Expandable>()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/binder/ |
H A D | KeyguardQuickAffordanceOnTouchListener.kt | 28 import com.android.systemui.animation.Expandable 128 expandable = Expandable.fromView(view),
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/user/ |
H A D | UserSwitchDialogController.kt | 32 import com.android.systemui.animation.Expandable 83 fun showDialog(context: Context, expandable: Expandable) {
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/domain/interactor/ |
H A D | KeyguardQuickAffordanceInteractor.kt | 28 import com.android.systemui.animation.Expandable 137 expandable: Expandable?, 317 private fun showDialog(dialog: AlertDialog, expandable: Expandable?) { 330 expandable: Expandable?,
|