/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
H A 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
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/ |
H A D | NotificationLaunchAnimatorControllerTest.kt | 88 verify(headsUpManager).removeNotification( 105 verify(headsUpManager).removeNotification( 122 verify(headsUpManager).removeNotification( 150 verify(headsUpManager).removeNotification( 152 verify(headsUpManager, never()).removeNotification(
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | StatusBarNotificationActivityStarter.java | 360 final Runnable removeNotification = in handleNotificationClickAfterPanelCollapsed() local 367 mShadeController.addPostCollapseAction(removeNotification); in handleNotificationClickAfterPanelCollapsed() 369 removeNotification.run(); in handleNotificationClickAfterPanelCollapsed() 396 final Runnable removeNotification = in onDragSuccess() local 404 mShadeController.addPostCollapseAction(removeNotification); in onDragSuccess() 406 removeNotification.run(); in onDragSuccess() 570 mHeadsUpManager.removeNotification(key, true /* releaseImmediately */); in removeHunAfterClick()
|
H A D | HeadsUpManagerPhone.java | 316 public boolean removeNotification(@NonNull String key, boolean releaseImmediately, in removeNotification() method in HeadsUpManagerPhone 319 return removeNotification(key, releaseImmediately); in removeNotification() 322 boolean removed = removeNotification(key, releaseImmediately); in removeNotification()
|
H A D | NotificationListenerWithPlugins.java | 164 public void removeNotification(StatusBarNotification sbn) { in getProvider() method in NotificationListenerWithPlugins
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
H A D | HeadsUpCoordinator.kt | 358 hunMutator.removeNotification(posted.key, false /*removeImmediately*/) 453 mHeadsUpManager.removeNotification(posted.key, false /*removeImmediately*/) 477 mHeadsUpManager.removeNotification(entry.key, removeImmediatelyForRemoteInput) 663 mHeadsUpManager.removeNotification(entry.key, /* releaseImmediately */ true) 667 mHeadsUpManager.removeNotification(entry.key, /* releaseImmediately */ false) 794 fun removeNotification(key: String, releaseImmediately: Boolean) regex 808 override fun removeNotification(key: String, releaseImmediately: Boolean) { 815 headsUpManager.removeNotification(key, releaseImmediately)
|
H A D | BubbleCoordinator.java | 125 public void removeNotification(
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
H A D | HeadsUpCoordinatorTest.kt | 190 verify(headsUpManager, times(0)).removeNotification(anyString(), eq(false)) 191 verify(headsUpManager, times(1)).removeNotification(anyString(), eq(true)) 206 verify(headsUpManager, times(0)).removeNotification(anyString(), eq(false)) 207 verify(headsUpManager, times(0)).removeNotification(anyString(), eq(true)) 220 verify(headsUpManager, times(0)).removeNotification(anyString(), any()) 237 verify(headsUpManager, times(1)).removeNotification(eq(entry.key), any()) 252 verify(headsUpManager, times(1)).removeNotification(eq(entry.key), any()) 264 verify(headsUpManager, times(0)).removeNotification(anyString(), eq(false)) 265 verify(headsUpManager, times(0)).removeNotification(anyString(), eq(true)) 277 verify(headsUpManager, times(0)).removeNotification(anyString(), eq(true)) [all …]
|
/aosp14/frameworks/base/packages/DynamicSystemInstallationService/src/com/android/dynsystem/ |
H A D | DynamicSystemInstallationService.java | 278 boolean removeNotification = false; in onResult() 282 removeNotification = true; in onResult() 300 resetTaskAndStop(removeNotification); in onResult() 497 private void resetTaskAndStop(boolean removeNotification) { in resetTaskAndStop() argument 499 stopForeground(removeNotification ? STOP_FOREGROUND_REMOVE : STOP_FOREGROUND_DETACH); in resetTaskAndStop()
|
/aosp14/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/ |
H A D | NotificationListenerController.java | 80 void removeNotification(StatusBarNotification sbn); in removeNotification() method
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
H A D | AlertingNotificationManagerTest.java | 214 final boolean removedImmediately = alm.removeNotification(entry.getKey(), in testRemoveNotification_removeDeferred() 229 final boolean removedImmediately = alm.removeNotification(entry.getKey(), in testRemoveNotification_forceRemove()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/wmshell/ |
H A D | BubblesManager.java | 308 cb.removeNotification(entry, getDismissedByUserStats(entry, true), in BubblesManager() 489 cb.removeNotification(children.get(i), in handleDismissalInterception() 495 cb.removeNotification(entry, getDismissedByUserStats(entry, true), in handleDismissalInterception() 644 void removeNotification(@NonNull NotificationEntry entry,
|
/aosp14/frameworks/base/core/java/android/app/ |
H A D | Service.java | 884 public final void stopForeground(boolean removeNotification) { in stopForeground() argument 885 stopForeground(removeNotification ? STOP_FOREGROUND_REMOVE : STOP_FOREGROUND_LEGACY); in stopForeground()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/ |
H A D | HeadsUpManagerTest.java | 316 final boolean removedImmediately = hum.removeNotification( in testRemoveNotification_beforeMinimumDisplayTime() 347 removedAfterMinimumDisplayTime[0] = hum.removeNotification( in testRemoveNotification_afterMinimumDisplayTime() 375 final boolean removedImmediately = hum.removeNotification( in testRemoveNotification_releaseImmediately()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
H A D | NotificationLaunchAnimatorController.kt | 175 headsUpManager.removeNotification(row.entry.key, true /* releaseImmediately */, animate)
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
H A D | HeadsUpManagerPhoneTest.java | 170 final boolean removedImmediately = hmp.removeNotification(entry.getKey(), in testSwipedOutNotification()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
H A D | AlertingNotificationManager.java | 76 public boolean removeNotification(@NonNull String key, boolean releaseImmediately) { in removeNotification() method in AlertingNotificationManager
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wmshell/ |
H A D | BubblesTest.java | 547 verify(mNotifCallback, never()).removeNotification(eq(mRow), any(), anyInt()); in testRemoveBubble_withDismissedNotif_inOverflow() 570 verify(mNotifCallback, times(1)).removeNotification(eq(mRow), in testRemoveBubble_withDismissedNotif_notInOverflow() 1093 verify(mNotifCallback, times(1)).removeNotification( in testSummaryDismissalMarksBubblesHiddenFromShadeAndDismissesNonBubbledChildren() 1095 verify(mNotifCallback, times(1)).removeNotification( in testSummaryDismissalMarksBubblesHiddenFromShadeAndDismissesNonBubbledChildren() 1097 verify(mNotifCallback, never()).removeNotification(eq(groupedBubble.getEntry()), in testSummaryDismissalMarksBubblesHiddenFromShadeAndDismissesNonBubbledChildren()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
H A D | ExpandableNotificationRow.java | 876 mChildrenContainer.removeNotification(row); 894 mChildrenContainer.removeNotification(child); 1209 mHeadsUpManager.removeNotification(mEntry.getKey(), true /* releaseImmediately */);
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
H A D | NotificationChildrenContainer.java | 355 public void removeNotification(ExpandableNotificationRow row) {
|
H A D | NotificationStackScrollLayoutController.java | 564 mHeadsUpManager.removeNotification(row.getEntry().getSbn().getKey(),
|
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
H A D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |