Home
last modified time | relevance | path

Searched refs:networkTypeBackground (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/ui/viewmodel/
DMobileIconViewModel.kt58 val networkTypeBackground: StateFlow<Icon.Resource?> in <lambda>() constant
134 override val networkTypeBackground: StateFlow<Icon.Resource?> = constant
136 .flatMapLatest { it.networkTypeBackground } in <lambda>()
163 override val networkTypeBackground: StateFlow<Icon.Resource?> = MutableStateFlow(null) constant
271 override val networkTypeBackground = constant
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/mobile/ui/viewmodel/
DMobileIconViewModelTest.kt750 val latest by collectLastValue(underTest.networkTypeBackground) in netTypeBackground_flagOff_isNull()
763 val latest by collectLastValue(underTest.networkTypeBackground) in netTypeBackground_flagOn_nullWhenNoPrioritizedCapabilities()
776 val latest by collectLastValue(underTest.networkTypeBackground) in netTypeBackground_flagOn_notNullWhenPrioritizedCapabilities()
792 val networkTypeBackground by collectLastValue(underTest.networkTypeBackground) in nonTerrestrial_defaultProperties() constant
799 assertThat(networkTypeBackground).isNull() in nonTerrestrial_defaultProperties()
813 val networkTypeBackground by collectLastValue(underTest.networkTypeBackground) in nonTerrestrial_ignoresDefaultProperties() constant
830 assertThat(networkTypeBackground).isNull() in nonTerrestrial_ignoresDefaultProperties()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/ui/binder/
DMobileIconBinder.kt180 viewModel.networkTypeBackground.collect { background -> in <lambda>()
243 if (viewModel.networkTypeBackground.value != null) { in <lambda>()