Home
last modified time | relevance | path

Searched defs:stickyKeys (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyboard/stickykeys/ui/viewmodel/
DStickyKeysIndicatorViewModelTest.kt158 val stickyKeys by collectLastValue(viewModel.indicatorContent) in emitsStickyKeysListWhenStickyKeyIsPressed() constant
170 val stickyKeys by collectLastValue(viewModel.indicatorContent) in emitsEmptyListWhenNoStickyKeysAreActive() constant
182 val stickyKeys by collectLastValue(viewModel.indicatorContent) in passesAllStickyKeysToDialog() constant
201 val stickyKeys by collectLastValue(viewModel.indicatorContent) in showsOnlyLockedStateIfKeyIsStickyAndLocked() constant
215 val stickyKeys by collectLastValue(viewModel.indicatorContent) in doesNotChangeOrderOfKeysIfTheyBecomeLocked() 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() constant
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyboard/stickykeys/data/repository/
DStickyKeysRepository.kt45 val stickyKeys: Flow<LinkedHashMap<ModifierKey, Locked>> in <lambda>() constant
59 override val stickyKeys: Flow<LinkedHashMap<ModifierKey, Locked>> = constant
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/keyboard/data/repository/
DFakeStickyKeysRepository.kt30 override val stickyKeys: Flow<LinkedHashMap<ModifierKey, Locked>> = _stickyKeys constant in com.android.systemui.keyboard.data.repository.FakeStickyKeysRepository
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyboard/stickykeys/ui/
DStickyKeysIndicatorCoordinator.kt42 viewModel.indicatorContent.collect { stickyKeys -> in <lambda>() method