Home
last modified time | relevance | path

Searched refs:bottomAreaInteractor (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/keyguard/ui/viewmodel/
DKeyguardIndicationAreaViewModelTest.kt62 private lateinit var bottomAreaInteractor: KeyguardBottomAreaInteractor variable in com.android.systemui.keyguard.ui.viewmodel.KeyguardIndicationAreaViewModelTest
99 bottomAreaInteractor = KeyguardBottomAreaInteractor(repository = repository) in setUp()
103 bottomAreaInteractor = bottomAreaInteractor, in setUp()
154 bottomAreaInteractor.setClockPosition(100, 100) in indicationAreaTranslationX()
156 bottomAreaInteractor.setClockPosition(200, 100) in indicationAreaTranslationX()
158 bottomAreaInteractor.setClockPosition(200, 200) in indicationAreaTranslationX()
160 bottomAreaInteractor.setClockPosition(300, 100) in indicationAreaTranslationX()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/viewmodel/
DKeyguardBottomAreaViewModel.kt45 private val bottomAreaInteractor: KeyguardBottomAreaInteractor, in <lambda>() constant in com.android.systemui.keyguard.ui.viewmodel.KeyguardBottomAreaViewModel
82 bottomAreaInteractor.alpha in <lambda>()
101 bottomAreaInteractor.alpha.distinctUntilChanged() in <lambda>()
106 bottomAreaInteractor.clockPosition.map { it.x.toFloat() }.distinctUntilChanged() in <lambda>()
125 bottomAreaInteractor.shouldConstrainToTopOfLockIcon() in <lambda>()
178 bottomAreaInteractor.animateDozingTransitions.distinctUntilChanged(), in <lambda>()
DKeyguardIndicationAreaViewModel.kt47 private val bottomAreaInteractor: KeyguardBottomAreaInteractor, in <lambda>() constant in com.android.systemui.keyguard.ui.viewmodel.KeyguardIndicationAreaViewModel
107 bottomAreaInteractor.clockPosition.map { it.x.toFloat() }.distinctUntilChanged() in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/communal/ui/viewmodel/
DCommunalTutorialIndicatorViewModel.kt33 bottomAreaInteractor: KeyguardBottomAreaInteractor,
49 val alpha: Flow<Float> = bottomAreaInteractor.alpha.distinctUntilChanged()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/ui/viewmodel/
DKeyguardBottomAreaViewModelTest.kt247 bottomAreaInteractor = KeyguardBottomAreaInteractor(repository = repository), in setUp()