Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DLightsOutNotifControllerTest.java150 assertTrue(mLightsOutNotifController.shouldShowDot()); in testLightsOut_withNotifs_onSystemBarAttributesChanged()
169 assertFalse(mLightsOutNotifController.shouldShowDot()); in testLightsOut_withoutNotifs_onSystemBarAttributesChanged()
188 assertFalse(mLightsOutNotifController.shouldShowDot()); in testLightsOn_afterLightsOut_onSystemBarAttributesChanged()
202 assertTrue(mLightsOutNotifController.shouldShowDot()); in testEntryAdded()
219 assertFalse(mLightsOutNotifController.shouldShowDot()); in testEntryRemoved()
237 assertTrue(mLightsOutNotifController.shouldShowDot()); in testEntryUpdated()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/events/
DPrivacyDotViewController.kt329 private fun updateDesignatedCorner(newCorner: View?, shouldShowDot: Boolean) { in <lambda>()
330 if (shouldShowDot) { in <lambda>()
503 updateDesignatedCorner(state.designatedCorner, state.shouldShowDot()) in <lambda>()
508 val shouldShow = state.shouldShowDot() in <lambda>()
509 if (shouldShow != currentViewState.shouldShowDot()) { in <lambda>()
636 fun shouldShowDot(): Boolean { in shouldShowDot() method in com.android.systemui.statusbar.events.ViewState
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DLightsOutNotifController.java110 final boolean showDot = shouldShowDot(); in updateLightsOutView()
139 boolean shouldShowDot() { in shouldShowDot() method in LightsOutNotifController