Home
last modified time | relevance | path

Searched refs:showExclamationMark (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/domain/model/
DSignalIconModel.kt41 val showExclamationMark: Boolean, in logFull() constant in com.android.systemui.statusbar.pipeline.mobile.domain.model.SignalIconModel.Cellular
54 if (prevVal.showExclamationMark != showExclamationMark) { in logFull()
55 row.logChange(COL_SHOW_EXCLAMATION, showExclamationMark) in logFull()
67 row.logChange(COL_SHOW_EXCLAMATION, showExclamationMark) in logFull()
76 SignalDrawable.getState(level, numberOfLevels, showExclamationMark) in logFull()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/domain/interactor/
DMobileIconInteractor.kt318 private val showExclamationMark: StateFlow<Boolean> = constant
344 showExclamationMark,
346 ) { shownLevel, numberOfLevels, showExclamationMark, carrierNetworkChange -> in shownLevel() method
350 showExclamationMark, in shownLevel()
370 showExclamationMark.value, in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/mobile/ui/model/
DSignalIconModelParameterizedTest.kt38 showExclamationMark = false, in drawableFromModel_level0_numLevels4_noExclamation_notCarrierNetworkChange()
65 showExclamationMark = showExclamation, in toSignalIconModel()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/mobile/domain/interactor/
DMobileIconInteractorTest.kt573 assertThat(latest?.showExclamationMark).isFalse() in cellBasedIconId_correctLevel_notCutout()
628 assertThat(latest!!.showExclamationMark).isTrue() in cellBasedIcon_defaultDataDisabled_showExclamationTrue()
645 assertThat(latest!!.showExclamationMark).isTrue() in cellBasedIcon_defaultConnectionFailed_showExclamationTrue()
664 assertThat(latest!!.showExclamationMark).isFalse() in cellBasedIcon_enabledAndNotFailed_showExclamationFalse()
682 assertThat(latest?.showExclamationMark).isTrue() in cellBasedIcon_usesEmptyState_whenNotInService()
687 assertThat(latest?.showExclamationMark).isTrue() in cellBasedIcon_usesEmptyState_whenNotInService()
692 assertThat(latest?.showExclamationMark).isFalse() in cellBasedIcon_usesEmptyState_whenNotInService()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/statusbar/pipeline/mobile/domain/interactor/
DFakeMobileIconInteractor.kt79 showExclamationMark = false,
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/ui/
DVerboseMobileViewLogger.kt62 bool1 = if (icon is SignalIconModel.Cellular) icon.showExclamationMark else false in logBinderReceivedSignalIcon()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/mobile/ui/viewmodel/
DLocationBasedMobileIconViewModelTest.kt196 showExclamationMark = false, in defaultSignal()