Home
last modified time | relevance | path

Searched refs:DEFAULT_NUM_LEVELS (Results 1 – 8 of 8) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/prod/
H A DCarrierMergedConnectionRepository.kt30 …i.statusbar.pipeline.mobile.data.repository.MobileConnectionRepository.Companion.DEFAULT_NUM_LEVELS
119 DEFAULT_NUM_LEVELS
122 .stateIn(scope, SharingStarted.WhileSubscribed(), DEFAULT_NUM_LEVELS)
H A DMobileConnectionRepositoryImpl.kt59 …i.statusbar.pipeline.mobile.data.repository.MobileConnectionRepository.Companion.DEFAULT_NUM_LEVELS
294 DEFAULT_NUM_LEVELS + 1
296 DEFAULT_NUM_LEVELS
299 .stateIn(scope, SharingStarted.WhileSubscribed(), DEFAULT_NUM_LEVELS)
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/
H A DFakeMobileConnectionRepository.kt24 …i.statusbar.pipeline.mobile.data.repository.MobileConnectionRepository.Companion.DEFAULT_NUM_LEVELS
48 override val numberOfLevels = MutableStateFlow(DEFAULT_NUM_LEVELS)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/demo/
H A DDemoMobileConnectionRepository.kt28 …i.statusbar.pipeline.mobile.data.repository.MobileConnectionRepository.Companion.DEFAULT_NUM_LEVELS
182 override val numberOfLevels = MutableStateFlow(MobileConnectionRepository.DEFAULT_NUM_LEVELS)
212 if (event.inflateStrength) DEFAULT_NUM_LEVELS + 1 else DEFAULT_NUM_LEVELS
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/wifi/data/repository/demo/
H A DDemoModeWifiDataSource.kt25 …i.statusbar.pipeline.mobile.data.repository.MobileConnectionRepository.Companion.DEFAULT_NUM_LEVELS
74 val numberOfLevels = getString("numlevels")?.toInt() ?: DEFAULT_NUM_LEVELS
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/
H A DMobileConnectionRepository.kt137 val DEFAULT_NUM_LEVELS = CellSignalStrength.getNumSignalStrengthLevels() regex
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/prod/
H A DMobileConnectionRepositoryTest.kt79 …i.statusbar.pipeline.mobile.data.repository.MobileConnectionRepository.Companion.DEFAULT_NUM_LEVELS
556 assertThat(latest).isEqualTo(DEFAULT_NUM_LEVELS)
943 assertThat(latest).isEqualTo(DEFAULT_NUM_LEVELS)
949 assertThat(latest).isEqualTo(DEFAULT_NUM_LEVELS + 1)
955 assertThat(latest).isEqualTo(DEFAULT_NUM_LEVELS)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/wifi/shared/model/
H A DWifiNetworkModel.kt153 val numberOfLevels: Int = MobileConnectionRepository.DEFAULT_NUM_LEVELS,