Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/qs/tiles/impl/rotation/domain/interactor/
DRotationLockTileUserActionInteractorTest.kt28 import com.android.systemui.qs.tiles.impl.rotation.domain.model.RotationLockTileModel
53 underTest.handleInput(QSTileInputTestKtx.click(RotationLockTileModel(wasEnabled, false))) in <lambda>()
63 underTest.handleInput(QSTileInputTestKtx.click(RotationLockTileModel(wasEnabled, false))) in <lambda>()
74 RotationLockTileModel( in <lambda>()
90 underTest.handleInput(QSTileInputTestKtx.longClick(RotationLockTileModel(enabled, false))) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/impl/rotation/domain/interactor/
DRotationLockTileUserActionInteractor.kt24 import com.android.systemui.qs.tiles.impl.rotation.domain.model.RotationLockTileModel
35 ) : QSTileUserActionInteractor<RotationLockTileModel> {
37 override suspend fun handleInput(input: QSTileInput<RotationLockTileModel>) { in handleInput()
DRotationLockTileDataInteractor.kt28 import com.android.systemui.qs.tiles.impl.rotation.domain.model.RotationLockTileModel in <lambda>()
48 ) : QSTileDataInteractor<RotationLockTileModel> { in <lambda>()
53 ): Flow<RotationLockTileModel> = in <lambda>()
65 RotationLockTileModel( in <lambda>()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/qs/tiles/impl/rotation/ui/mapper/
DRotationLockTileMapperTest.kt27 import com.android.systemui.qs.tiles.impl.rotation.domain.model.RotationLockTileModel
73 val inputModel = RotationLockTileModel(false, false) in rotationNotLocked_cameraRotationDisabled()
88 val inputModel = RotationLockTileModel(false, true) in rotationNotLocked_cameraRotationEnabled()
103 val inputModel = RotationLockTileModel(true, false) in rotationLocked_cameraRotationNotEnabled()
119 val inputModel = RotationLockTileModel(false, false) in deviceFoldableAndClosed_secondaryLabelIsFoldableSpecific()
141 val inputModel = RotationLockTileModel(false, false) in deviceFoldableAndNotClosed_secondaryLabelIsFoldableSpecific()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/impl/rotation/ui/mapper/
DRotationLockTileMapper.kt23 import com.android.systemui.qs.tiles.impl.rotation.domain.model.RotationLockTileModel
37 ) : QSTileDataToStateMapper<RotationLockTileModel> {
38 override fun map(config: QSTileConfig, data: RotationLockTileModel): QSTileState = in map()
/frameworks/base/packages/SystemUI/src/com/android/systemui/rotationlock/
DRotationLockNewModule.kt26 import com.android.systemui.qs.tiles.impl.rotation.domain.model.RotationLockTileModel
70 factory: QSTileViewModelFactory.Static<RotationLockTileModel>, in provideRotationAvailabilityInteractor()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/impl/rotation/domain/model/
DRotationLockTileModel.kt20 class RotationLockTileModel( class