/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | ForegroundServicesUserState.java | 74 return removeNotification(mImportantNotifications, pkg, key); in removeImportantNotification() 82 return removeNotification(mStandardLayoutNotifications, pkg, key); in removeStandardLayoutNotification() 85 public boolean removeNotification(String pkg, String key) { in removeNotification() method in ForegroundServicesUserState 100 public boolean removeNotification(ArrayMap<String, ArraySet<String>> map, in removeNotification() method in ForegroundServicesUserState
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/ |
D | NotificationTransitionAnimatorControllerTest.kt | 95 .removeNotification( in testHunIsRemovedAndCallbackIsInvokedIfWeDontAnimateLaunch() 118 .removeNotification( in testHunIsRemovedAndCallbackIsInvokedWhenAnimationIsCancelled() 141 .removeNotification( in testHunIsRemovedAndCallbackIsInvokedWhenAnimationEnds() 183 .removeNotification( in testAlertingSummaryHunRemovedOnNonAlertingChildLaunch() 190 .removeNotification( in testAlertingSummaryHunRemovedOnNonAlertingChildLaunch()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/headsup/ |
D | HeadsUpManager.kt | 132 fun removeNotification(key: String, releaseImmediately: Boolean, reason: String): Boolean in addHeadsUpPhoneListener() method 144 fun removeNotification( in addHeadsUpPhoneListener() method 308 override fun removeNotification(key: String, releaseImmediately: Boolean, reason: String) = in onHeadsUpAnimatingAwayStateChanged() method in com.android.systemui.statusbar.notification.headsup.HeadsUpManagerEmptyImpl 311 override fun removeNotification( in onHeadsUpAnimatingAwayStateChanged() method in com.android.systemui.statusbar.notification.headsup.HeadsUpManagerEmptyImpl
|
D | HeadsUpManagerImpl.java | 347 public boolean removeNotification( in removeNotification() method in HeadsUpManagerImpl 353 return removeNotification(key, releaseImmediately, in removeNotification() 357 final boolean removed = removeNotification(key, releaseImmediately, in removeNotification() 365 public boolean removeNotification(@NotNull String key, boolean releaseImmediately, in removeNotification() method in HeadsUpManagerImpl
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | StatusBarNotificationActivityStarter.java | 239 mHeadsUpManager.removeNotification(entry.getKey(), /* releaseImmediately= */ true, in onNotificationBubbleIconClicked() 416 final Runnable removeNotification = in handleNotificationClickAfterPanelCollapsed() local 423 mShadeController.addPostCollapseAction(removeNotification); in handleNotificationClickAfterPanelCollapsed() 425 removeNotification.run(); in handleNotificationClickAfterPanelCollapsed() 452 final Runnable removeNotification = in onDragSuccess() local 460 mShadeController.addPostCollapseAction(removeNotification); in onDragSuccess() 462 removeNotification.run(); in onDragSuccess() 682 mHeadsUpManager.removeNotification(key, /* releaseImmediately= */ true, in removeHunAfterClick()
|
D | NotificationListenerWithPlugins.java | 164 public void removeNotification(StatusBarNotification sbn) { in getProvider() method in NotificationListenerWithPlugins
|
D | DozeServiceHost.java | 193 mHeadsUpManager.removeNotification( in fireNotificationPulse()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
D | HeadsUpCoordinator.kt | 516 hunMutator.removeNotification( in <lambda>() 531 hunMutator.removeNotification(posted.key, shouldRemoveImmediately) in <lambda>() 652 mHeadsUpManager.removeNotification( in <lambda>() 680 mHeadsUpManager.removeNotification( in <lambda>() 883 mHeadsUpManager.removeNotification( in <lambda>() 894 mHeadsUpManager.removeNotification( in <lambda>() 1055 fun removeNotification(key: String, releaseImmediately: Boolean) in updateNotification() method 1069 override fun removeNotification(key: String, releaseImmediately: Boolean) { in updateNotification() method in com.android.systemui.statusbar.notification.collection.coordinator.HunMutatorImpl 1076 headsUpManager.removeNotification(key, releaseImmediately, "commitModifications") in updateNotification()
|
D | BubbleCoordinator.java | 125 public void removeNotification(
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/headsup/ |
D | HeadsUpManagerImplTest.kt | 296 underTest.removeNotification( in testRemoveNotification_notPinnedByUser_removeDeferred() 313 underTest.removeNotification( in testRemoveNotification_isPinnedByUser_removeDeferred() 329 underTest.removeNotification(entry.key, /* releaseImmediately= */ true, "forceRemove") in testRemoveNotification_notPinnedByUser_forceRemove() 342 underTest.removeNotification(entry.key, /* releaseImmediately= */ true, "forceRemove") in testRemoveNotification_isPinnedByUser_forceRemove() 428 underTest.removeNotification( in testRemoveNotification_beforeMinimumDisplayTime_notUserInitiatedHun() 456 underTest.removeNotification( in testRemoveNotification_afterMinimumDisplayTime_notUserInitiatedHun() 475 underTest.removeNotification( in testRemoveNotification_beforeMinimumDisplayTime_forUserInitiatedHun() 506 underTest.removeNotification( in testRemoveNotification_afterMinimumDisplayTime_forUserInitiatedHun() 523 underTest.removeNotification( in testRemoveNotification_releaseImmediately() 561 underTest.removeNotification( in testSwipedOutNotification_notPinnedByUser() [all …]
|
/frameworks/base/packages/DynamicSystemInstallationService/src/com/android/dynsystem/ |
D | DynamicSystemInstallationService.java | 268 boolean removeNotification = false; in onResult() 272 removeNotification = true; in onResult() 290 resetTaskAndStop(removeNotification); in onResult() 487 private void resetTaskAndStop(boolean removeNotification) { in resetTaskAndStop() argument 489 stopForeground(removeNotification ? STOP_FOREGROUND_REMOVE : STOP_FOREGROUND_DETACH); in resetTaskAndStop()
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
D | HeadsUpCoordinatorTest.kt | 226 verify(headsUpManager, times(0)).removeNotification(anyString(), eq(false), anyString()) in <lambda>() 227 verify(headsUpManager, times(1)).removeNotification(anyString(), eq(true), anyString()) in <lambda>() 242 verify(headsUpManager, times(0)).removeNotification(anyString(), eq(false), anyString()) in <lambda>() 243 verify(headsUpManager, times(0)).removeNotification(anyString(), eq(true), anyString()) in <lambda>() 256 verify(headsUpManager, never()).removeNotification(anyString(), any(), anyString()) in <lambda>() 273 verify(headsUpManager, times(1)).removeNotification(eq(entry.key), any(), anyString()) in <lambda>() 288 verify(headsUpManager, times(1)).removeNotification(eq(entry.key), any(), anyString()) in <lambda>() 300 verify(headsUpManager, never()).removeNotification(anyString(), eq(false), anyString()) in <lambda>() 301 verify(headsUpManager, never()).removeNotification(anyString(), eq(true), anyString()) in <lambda>() 312 verify(headsUpManager, times(1)).removeNotification(anyString(), eq(false), anyString()) in <lambda>() [all …]
|
/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/ |
D | NotificationListenerController.java | 80 void removeNotification(StatusBarNotification sbn); in removeNotification() method
|
/frameworks/base/core/java/android/app/ |
D | Service.java | 885 public final void stopForeground(boolean removeNotification) { in stopForeground() argument 886 stopForeground(removeNotification ? STOP_FOREGROUND_REMOVE : STOP_FOREGROUND_LEGACY); in stopForeground()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/wmshell/ |
D | BubblesManager.java | 358 cb.removeNotification(entry, getDismissedByUserStats(entry, true), in BubblesManager() 554 cb.removeNotification(children.get(i), in handleDismissalInterception() 560 cb.removeNotification(entry, getDismissedByUserStats(entry, true), in handleDismissalInterception() 731 void removeNotification(@NonNull NotificationEntry entry,
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | NotificationTransitionAnimatorController.kt | 178 headsUpManager.removeNotification( in removeHun()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | StatusBarNotificationActivityStarterTest.java | 435 verify(mHeadsUpManager).removeNotification( in testOnNotificationBubbleIconClicked_unbubble_keyGuardShowing() 461 verify(mHeadsUpManager).removeNotification( in testOnNotificationBubbleIconClicked_bubble_keyGuardShowing()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wmshell/ |
D | BubblesTest.java | 723 verify(mNotifCallback, never()).removeNotification(eq(mRow), any(), anyInt()); in testRemoveBubble_withDismissedNotif_inOverflow() 746 verify(mNotifCallback, times(1)).removeNotification(eq(mRow), in testRemoveBubble_withDismissedNotif_notInOverflow() 1348 verify(mNotifCallback, times(1)).removeNotification( in testSummaryDismissalMarksBubblesHiddenFromShadeAndDismissesNonBubbledChildren() 1350 verify(mNotifCallback, times(1)).removeNotification( in testSummaryDismissalMarksBubblesHiddenFromShadeAndDismissesNonBubbledChildren() 1352 verify(mNotifCallback, never()).removeNotification(eq(groupedBubble), in testSummaryDismissalMarksBubblesHiddenFromShadeAndDismissesNonBubbledChildren() 1390 verify(mNotifCallback, times(1)).removeNotification( in testSummaryDismissalMarksBubblesHiddenFromShadeAndDismissesNonBubbledChildren_row() 1392 verify(mNotifCallback, times(1)).removeNotification( in testSummaryDismissalMarksBubblesHiddenFromShadeAndDismissesNonBubbledChildren_row() 1394 verify(mNotifCallback, never()).removeNotification(eq(groupedBubble.getEntry()), in testSummaryDismissalMarksBubblesHiddenFromShadeAndDismissesNonBubbledChildren_row()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationChildrenContainer.java | 397 public void removeNotification(ExpandableNotificationRow row) {
|
D | NotificationStackScrollLayoutController.java | 675 mHeadsUpManager.removeNotification(
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | ExpandableNotificationRow.java | 1162 mChildrenContainer.removeNotification(row); 1180 mChildrenContainer.removeNotification(child);
|