Home
last modified time | relevance | path

Searched refs:removeNotification (Results 1 – 22 of 22) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DForegroundServicesUserState.java74 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 DNotificationLaunchAnimatorControllerTest.kt88 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 DStatusBarNotificationActivityStarter.java360 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 DHeadsUpManagerPhone.java316 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 DNotificationListenerWithPlugins.java164 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 DHeadsUpCoordinator.kt358 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 DBubbleCoordinator.java125 public void removeNotification(
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DHeadsUpCoordinatorTest.kt190 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 DDynamicSystemInstallationService.java278 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 DNotificationListenerController.java80 void removeNotification(StatusBarNotification sbn); in removeNotification() method
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
H A DAlertingNotificationManagerTest.java214 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 DBubblesManager.java308 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 DService.java884 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 DHeadsUpManagerTest.java316 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 DNotificationLaunchAnimatorController.kt175 headsUpManager.removeNotification(row.entry.key, true /* releaseImmediately */, animate)
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DHeadsUpManagerPhoneTest.java170 final boolean removedImmediately = hmp.removeNotification(entry.getKey(), in testSwipedOutNotification()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DAlertingNotificationManager.java76 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 DBubblesTest.java547 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 DExpandableNotificationRow.java876 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 DNotificationChildrenContainer.java355 public void removeNotification(ExpandableNotificationRow row) {
H A DNotificationStackScrollLayoutController.java564 mHeadsUpManager.removeNotification(row.getEntry().getSbn().getKey(),
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/
H A Dandroid-33.jarAndroidManifest.xml META-INF/ META-INF/MANIFEST.MF NOTICES/ NOTICES/libcore ...