Home
last modified time | relevance | path

Searched refs:isBubbleNotificationSuppressedFromShade (Results 1 – 9 of 9) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wmshell/
H A DNewNotifPipelineBubblesTest.java888 assertTrue(mBubbleController.isBubbleNotificationSuppressedFromShade( in testBubbleSummaryDismissal_suppressesSummaryAndBubbleFromShade()
891 assertTrue(mBubbleController.getImplCachedState().isBubbleNotificationSuppressedFromShade( in testBubbleSummaryDismissal_suppressesSummaryAndBubbleFromShade()
945 assertTrue(mBubbleController.isBubbleNotificationSuppressedFromShade( in testSummaryDismissalMarksBubblesHiddenFromShadeAndDismissesNonBubbledChildren()
948 assertTrue(mBubbleController.getImplCachedState().isBubbleNotificationSuppressedFromShade( in testSummaryDismissalMarksBubblesHiddenFromShadeAndDismissesNonBubbledChildren()
953 assertTrue(mBubbleController.isBubbleNotificationSuppressedFromShade( in testSummaryDismissalMarksBubblesHiddenFromShadeAndDismissesNonBubbledChildren()
956 assertTrue(mBubbleController.getImplCachedState().isBubbleNotificationSuppressedFromShade( in testSummaryDismissalMarksBubblesHiddenFromShadeAndDismissesNonBubbledChildren()
1148 assertTrue(mBubbleController.isBubbleNotificationSuppressedFromShade( in assertBubbleNotificationSuppressedFromShade()
1150 assertTrue(mBubbleController.getImplCachedState().isBubbleNotificationSuppressedFromShade( in assertBubbleNotificationSuppressedFromShade()
1159 assertFalse(mBubbleController.isBubbleNotificationSuppressedFromShade( in assertBubbleNotificationNotSuppressedFromShade()
1161 assertFalse(mBubbleController.getImplCachedState().isBubbleNotificationSuppressedFromShade( in assertBubbleNotificationNotSuppressedFromShade()
H A DBubblesTest.java1023 assertTrue(mBubbleController.isBubbleNotificationSuppressedFromShade( in testBubbleSummaryDismissal_suppressesSummaryAndBubbleFromShade()
1026 assertTrue(mBubbleController.getImplCachedState().isBubbleNotificationSuppressedFromShade( in testBubbleSummaryDismissal_suppressesSummaryAndBubbleFromShade()
1081 assertTrue(mBubbleController.isBubbleNotificationSuppressedFromShade( in testSummaryDismissal_marksBubblesHiddenFromShadeAndDismissesNonBubbledChildren()
1084 assertTrue(mBubbleController.getImplCachedState().isBubbleNotificationSuppressedFromShade( in testSummaryDismissal_marksBubblesHiddenFromShadeAndDismissesNonBubbledChildren()
1375 assertTrue(mBubbleController.isBubbleNotificationSuppressedFromShade( in assertBubbleNotificationSuppressedFromShade()
1377 assertTrue(mBubbleController.getImplCachedState().isBubbleNotificationSuppressedFromShade( in assertBubbleNotificationSuppressedFromShade()
1386 assertFalse(mBubbleController.isBubbleNotificationSuppressedFromShade( in assertBubbleNotificationNotSuppressedFromShade()
1388 assertFalse(mBubbleController.getImplCachedState().isBubbleNotificationSuppressedFromShade( in assertBubbleNotificationNotSuppressedFromShade()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationViewHierarchyManager.java337 final boolean isBubbleNotificationSuppressedFromShade = mBubblesOptional.isPresent() in shouldSuppressActiveNotification()
338 && mBubblesOptional.get().isBubbleNotificationSuppressedFromShade( in shouldSuppressActiveNotification()
341 || isBubbleNotificationSuppressedFromShade in shouldSuppressActiveNotification()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DBubbleCoordinator.java92 && mBubblesOptional.get().isBubbleNotificationSuppressedFromShade(
/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
H A DBubbles.java84 boolean isBubbleNotificationSuppressedFromShade(String key, String groupKey); in isBubbleNotificationSuppressedFromShade() method
H A DBubbleController.java815 public boolean isBubbleNotificationSuppressedFromShade(String key, String groupKey) { in isBubbleNotificationSuppressedFromShade() method in BubbleController
1456 public synchronized boolean isBubbleNotificationSuppressedFromShade(String key, in isBubbleNotificationSuppressedFromShade() method in BubbleController.BubblesImpl.CachedState
1491 public boolean isBubbleNotificationSuppressedFromShade(String key, String groupKey) { in isBubbleNotificationSuppressedFromShade() method in BubbleController.BubblesImpl
1492 return mCachedState.isBubbleNotificationSuppressedFromShade(key, groupKey); in isBubbleNotificationSuppressedFromShade()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/people/
H A DNotificationHelper.java247 && bubblesOptional.get().isBubbleNotificationSuppressedFromShade( in shouldFilterOut()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/legacy/
H A DNotificationGroupManagerLegacy.java308 .isBubbleNotificationSuppressedFromShade( in updateSuppression()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/people/widget/
H A DPeopleSpaceWidgetManagerTest.java301 when(mBubbles.isBubbleNotificationSuppressedFromShade(any(), any())).thenReturn(false); in setUp()
1233 when(mBubbles.isBubbleNotificationSuppressedFromShade(any(), any())).thenReturn(true); in testAugmentTileFromNotificationEntryManager_notificationHidden()