Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DLegacyLightsOutNotifController.java108 final boolean showDot = shouldShowDot(); in updateLightsOutView()
109 if (showDot != isShowingDot()) { in updateLightsOutView()
110 if (showDot) { in updateLightsOutView()
116 .alpha(showDot ? 1 : 0) in updateLightsOutView()
117 .setDuration(showDot ? 750 : 250) in updateLightsOutView()
122 mView.setAlpha(showDot ? 1 : 0); in updateLightsOutView()
123 mView.setVisibility(showDot ? View.VISIBLE : View.GONE); in updateLightsOutView()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbleOverflow.kt44 private var showDot = false variable
182 showDot = show in setShowDot()
237 override fun showDot(): Boolean { in showDot() method in com.android.wm.shell.bubbles.BubbleOverflow
238 return showDot in showDot()
DBadgedImageView.java320 return mDotIsAnimating || (mBubble.showDot() && mDotSuppressionFlags.isEmpty()); in shouldDrawDot()
337 final boolean showDot = toScale > 0f; in animateDotScale()
347 fraction = showDot ? fraction : 1f - fraction; in animateDotScale()
350 setDotScale(showDot ? 1f : 0f); in animateDotScale()
DBubbleViewProvider.java76 boolean showDot(); in showDot() method
DBubble.java616 boolean showingDotPreviously = showDot(); in setEntry()
663 if (showingDotPreviously != showDot()) { in setEntry()
665 setShowDot(showDot()); in setEntry()
818 void setShowDot(boolean showDot) { in setShowDot() argument
819 mShowBubbleUpdateDot = showDot; in setShowDot()
830 public boolean showDot() { in showDot() method in Bubble
1015 pw.print(" showDot: "); pw.println(showDot()); in dump()
DBubbleStackView.java1571 if (mShowingOverflow && mBubbleOverflow.showDot()) { in updateOverflowDotVisibility()
3131 mStackAnimationController.getStackPosition(), !bubble.showDot(), in animateInFlyoutForBubble()
3143 !bubble.showDot()); in animateInFlyoutForBubble()
DBubbleController.java2116 if (b.showDot()) { in updateOverflowButtonDot()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wmshell/
DBubblesTest.java795 assertTrue(mBubbleData.getBubbleInStackWithKey(mRow.getKey()).showDot()); in testExpansionRemovesShowInShadeAndDot()
806 assertFalse(mBubbleData.getBubbleInStackWithKey(mRow.getKey()).showDot()); in testExpansionRemovesShowInShadeAndDot()
820 assertTrue(mBubbleData.getBubbleInStackWithKey(mRow.getKey()).showDot()); in testUpdateWhileExpanded_DoesntChangeShowInShadeAndDot()
831 assertFalse(mBubbleData.getBubbleInStackWithKey(mRow.getKey()).showDot()); in testUpdateWhileExpanded_DoesntChangeShowInShadeAndDot()
840 assertFalse(mBubbleData.getBubbleInStackWithKey(mRow.getKey()).showDot()); in testUpdateWhileExpanded_DoesntChangeShowInShadeAndDot()
963 assertFalse(mBubbleData.getBubbleInStackWithKey(mRow.getKey()).showDot()); in testSuppressNotif_onInitialNotif()
975 assertTrue(mBubbleData.getBubbleInStackWithKey(mRow.getKey()).showDot()); in testSuppressNotif_onUpdateNotif()
985 assertFalse(mBubbleData.getBubbleInStackWithKey(mRow.getKey()).showDot()); in testSuppressNotif_onUpdateNotif()
996 assertTrue(mBubbleData.getBubbleInStackWithKey(mRow.getKey()).showDot()); in testMarkNewNotificationAsShowInShade()