Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DLightsOutNotifController.java102 final boolean showDot = shouldShowDot(); in updateLightsOutView()
103 if (showDot != isShowingDot()) { in updateLightsOutView()
104 if (showDot) { in updateLightsOutView()
110 .alpha(showDot ? 1 : 0) in updateLightsOutView()
111 .setDuration(showDot ? 750 : 250) in updateLightsOutView()
116 mView.setAlpha(showDot ? 1 : 0); in updateLightsOutView()
117 mView.setVisibility(showDot ? View.VISIBLE : View.GONE); in updateLightsOutView()
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
H A DBubbleOverflow.kt42 private var showDot = false regex
158 showDot = show
211 override fun showDot(): Boolean {
212 return showDot
H A DBadgedImageView.java315 return mDotIsAnimating || (mBubble.showDot() && mDotSuppressionFlags.isEmpty()); in shouldDrawDot()
332 final boolean showDot = toScale > 0f; in animateDotScale()
342 fraction = showDot ? fraction : 1f - fraction; in animateDotScale()
345 setDotScale(showDot ? 1f : 0f); in animateDotScale()
H A DBubble.java569 boolean showingDotPreviously = showDot(); in setEntry()
616 if (showingDotPreviously != showDot()) { in setEntry()
618 setShowDot(showDot()); in setEntry()
771 void setShowDot(boolean showDot) { in setShowDot() argument
772 mShowBubbleUpdateDot = showDot; in setShowDot()
783 public boolean showDot() { in showDot() method in Bubble
969 pw.print(" showDot: "); pw.println(showDot()); in dump()
H A DBubbleViewProvider.java76 boolean showDot(); in showDot() method
H A DBubbleStackView.java2831 mStackAnimationController.getStackPosition(), !bubble.showDot(), in animateInFlyoutForBubble()
2843 !bubble.showDot()); in animateInFlyoutForBubble()
H A DBubbleController.java1854 if (b.showDot()) { in updateOverflowButtonDot()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wmshell/
H A DBubblesTest.java679 assertTrue(mBubbleData.getBubbleInStackWithKey(mRow.getKey()).showDot()); in testExpansionRemovesShowInShadeAndDot()
690 assertFalse(mBubbleData.getBubbleInStackWithKey(mRow.getKey()).showDot()); in testExpansionRemovesShowInShadeAndDot()
704 assertTrue(mBubbleData.getBubbleInStackWithKey(mRow.getKey()).showDot()); in testUpdateWhileExpanded_DoesntChangeShowInShadeAndDot()
715 assertFalse(mBubbleData.getBubbleInStackWithKey(mRow.getKey()).showDot()); in testUpdateWhileExpanded_DoesntChangeShowInShadeAndDot()
724 assertFalse(mBubbleData.getBubbleInStackWithKey(mRow.getKey()).showDot()); in testUpdateWhileExpanded_DoesntChangeShowInShadeAndDot()
847 assertFalse(mBubbleData.getBubbleInStackWithKey(mRow.getKey()).showDot()); in testSuppressNotif_onInitialNotif()
859 assertTrue(mBubbleData.getBubbleInStackWithKey(mRow.getKey()).showDot()); in testSuppressNotif_onUpdateNotif()
869 assertFalse(mBubbleData.getBubbleInStackWithKey(mRow.getKey()).showDot()); in testSuppressNotif_onUpdateNotif()
880 assertTrue(mBubbleData.getBubbleInStackWithKey(mRow.getKey()).showDot()); in testMarkNewNotificationAsShowInShade()