Home
last modified time | relevance | path

Searched refs:indicatorContent (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyboard/stickykeys/ui/viewmodel/
DStickyKeysIndicatorViewModelTest.kt95 collectLastValue(viewModel.indicatorContent) in doesntListenToStickyKeysOnlyWhenKeyboardIsConnected()
107 collectLastValue(viewModel.indicatorContent) in startsListeningToStickyKeysOnlyWhenKeyboardIsConnectedAndSettingIsOn()
130 collectLastValue(viewModel.indicatorContent) in stopsListeningToStickyKeysWhenStickyKeySettingsIsTurnedOff()
144 collectLastValue(viewModel.indicatorContent) in stopsListeningToStickyKeysWhenKeyboardDisconnects()
158 val stickyKeys by collectLastValue(viewModel.indicatorContent) in emitsStickyKeysListWhenStickyKeyIsPressed()
170 val stickyKeys by collectLastValue(viewModel.indicatorContent) in emitsEmptyListWhenNoStickyKeysAreActive()
182 val stickyKeys by collectLastValue(viewModel.indicatorContent) in passesAllStickyKeysToDialog()
201 val stickyKeys by collectLastValue(viewModel.indicatorContent) in showsOnlyLockedStateIfKeyIsStickyAndLocked()
215 val stickyKeys by collectLastValue(viewModel.indicatorContent) in doesNotChangeOrderOfKeysIfTheyBecomeLocked()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyboard/stickykeys/ui/
DStickyKeysIndicatorCoordinator.kt42 viewModel.indicatorContent.collect { stickyKeys -> in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyboard/stickykeys/ui/viewmodel/
DStickyKeysIndicatorViewModel.kt42 val indicatorContent: Flow<Map<ModifierKey, Locked>> = in <lambda>() constant
/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/keyboard/stickykeys/ui/view/
DStickyKeysIndicator.kt60 val stickyKeys by viewModel.indicatorContent.collectAsStateWithLifecycle(emptyMap()) in StickyKeysIndicator()