Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DLightsOutNotifControllerTest.java162 assertTrue(mLightsOutNotifController.shouldShowDot()); in testLightsOut_withNotifs_onSystemBarAttributesChanged()
183 assertFalse(mLightsOutNotifController.shouldShowDot()); in testLightsOut_withoutNotifs_onSystemBarAttributesChanged()
204 assertFalse(mLightsOutNotifController.shouldShowDot()); in testLightsOn_afterLightsOut_onSystemBarAttributesChanged()
218 assertTrue(mLightsOutNotifController.shouldShowDot()); in testEntryAdded()
235 assertFalse(mLightsOutNotifController.shouldShowDot()); in testEntryRemoved()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/events/
H A DPrivacyDotViewController.kt338 private fun updateDesignatedCorner(newCorner: View?, shouldShowDot: Boolean) {
339 if (shouldShowDot) {
511 updateDesignatedCorner(state.designatedCorner, state.shouldShowDot())
523 val shouldShow = state.shouldShowDot()
524 if (shouldShow != currentViewState.shouldShowDot()) {
654 fun shouldShowDot(): Boolean { regex
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DLightsOutNotifController.java102 final boolean showDot = shouldShowDot(); in updateLightsOutView()
134 boolean shouldShowDot() { in shouldShowDot() method in LightsOutNotifController