Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DLightsOutNotifControllerTest.java153 assertTrue(mLightsOutNotifController.shouldShowDot()); in testLightsOut_withNotifs_onSystemBarAttributesChanged()
173 assertFalse(mLightsOutNotifController.shouldShowDot()); in testLightsOut_withoutNotifs_onSystemBarAttributesChanged()
193 assertFalse(mLightsOutNotifController.shouldShowDot()); in testLightsOn_afterLightsOut_onSystemBarAttributesChanged()
207 assertTrue(mLightsOutNotifController.shouldShowDot()); in testEntryAdded()
224 assertFalse(mLightsOutNotifController.shouldShowDot()); in testEntryRemoved()
242 assertTrue(mLightsOutNotifController.shouldShowDot()); in testEntryUpdated()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/events/
H A DPrivacyDotViewController.kt315 private fun updateDesignatedCorner(newCorner: View?, shouldShowDot: Boolean) {
316 if (shouldShowDot) {
482 updateDesignatedCorner(state.designatedCorner, state.shouldShowDot())
487 val shouldShow = state.shouldShowDot()
488 if (shouldShow != currentViewState.shouldShowDot()) {
615 fun shouldShowDot(): Boolean { regex
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DLightsOutNotifController.java111 final boolean showDot = shouldShowDot(); in updateLightsOutView()
143 boolean shouldShowDot() { in shouldShowDot() method in LightsOutNotifController