/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/tests/src/com/android/systemui/statusbar/notification/ |
D | NotificationTransitionAnimatorControllerTest.kt | 94 .removeNotification(notificationKey, true /* releaseImmediately */, true /* animate */) in testHunIsRemovedAndCallbackIsInvokedIfWeDontAnimateLaunch() 112 .removeNotification(notificationKey, true /* releaseImmediately */, true /* animate */) in testHunIsRemovedAndCallbackIsInvokedWhenAnimationIsCancelled() 130 .removeNotification(notificationKey, true /* releaseImmediately */, false /* animate */) in testHunIsRemovedAndCallbackIsInvokedWhenAnimationEnds() 164 .removeNotification(summary.key, true /* releaseImmediately */, false /* animate */) in testAlertingSummaryHunRemovedOnNonAlertingChildLaunch() 166 .removeNotification( in testAlertingSummaryHunRemovedOnNonAlertingChildLaunch()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | HeadsUpManager.kt | 100 fun removeNotification(key: String, releaseImmediately: Boolean): Boolean in addHeadsUpPhoneListener() method 111 fun removeNotification(key: String, releaseImmediately: Boolean, animate: Boolean): Boolean in addHeadsUpPhoneListener() method 226 override fun removeNotification(key: String, releaseImmediately: Boolean) = false in onHeadsUpAnimatingAwayStateChanged() method in com.android.systemui.statusbar.policy.HeadsUpManagerEmptyImpl 227 override fun removeNotification(key: String, releaseImmediately: Boolean, animate: Boolean) = in onHeadsUpAnimatingAwayStateChanged() method in com.android.systemui.statusbar.policy.HeadsUpManagerEmptyImpl
|
D | BaseHeadsUpManager.java | 197 public boolean removeNotification(@NonNull String key, boolean releaseImmediately) { in removeNotification() method in BaseHeadsUpManager
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | StatusBarNotificationActivityStarter.java | 233 mHeadsUpManager.removeNotification(entry.getKey(), /* releaseImmediately= */ true); in onNotificationBubbleIconClicked() 408 final Runnable removeNotification = in handleNotificationClickAfterPanelCollapsed() local 415 mShadeController.addPostCollapseAction(removeNotification); in handleNotificationClickAfterPanelCollapsed() 417 removeNotification.run(); in handleNotificationClickAfterPanelCollapsed() 444 final Runnable removeNotification = in onDragSuccess() local 452 mShadeController.addPostCollapseAction(removeNotification); in onDragSuccess() 454 removeNotification.run(); in onDragSuccess() 624 mHeadsUpManager.removeNotification(key, true /* releaseImmediately */); in removeHunAfterClick()
|
D | NotificationListenerWithPlugins.java | 164 public void removeNotification(StatusBarNotification sbn) { in getProvider() method in NotificationListenerWithPlugins
|
D | HeadsUpManagerPhone.java | 359 public boolean removeNotification(@NonNull String key, boolean releaseImmediately, in removeNotification() method in HeadsUpManagerPhone 362 return removeNotification(key, releaseImmediately); in removeNotification() 365 boolean removed = removeNotification(key, releaseImmediately); in removeNotification()
|
D | DozeServiceHost.java | 196 mHeadsUpManager.removeNotification( in fireNotificationPulse()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
D | HeadsUpCoordinator.kt | 364 hunMutator.removeNotification(posted.key, false /*removeImmediately*/) in <lambda>() 459 mHeadsUpManager.removeNotification(posted.key, false /*removeImmediately*/) in <lambda>() 483 mHeadsUpManager.removeNotification(entry.key, removeImmediatelyForRemoteInput) in <lambda>() 669 mHeadsUpManager.removeNotification(entry.key, /* releaseImmediately */ true) in <lambda>() 673 mHeadsUpManager.removeNotification(entry.key, /* releaseImmediately */ false) in <lambda>() 800 fun removeNotification(key: String, releaseImmediately: Boolean) in updateNotification() method 814 override fun removeNotification(key: String, releaseImmediately: Boolean) { in updateNotification() method in com.android.systemui.statusbar.notification.collection.coordinator.HunMutatorImpl 821 headsUpManager.removeNotification(key, releaseImmediately) in updateNotification()
|
D | BubbleCoordinator.java | 125 public void removeNotification(
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
D | HeadsUpCoordinatorTest.kt | 190 verify(headsUpManager, times(0)).removeNotification(anyString(), eq(false)) in <lambda>() 191 verify(headsUpManager, times(1)).removeNotification(anyString(), eq(true)) in <lambda>() 206 verify(headsUpManager, times(0)).removeNotification(anyString(), eq(false)) in <lambda>() 207 verify(headsUpManager, times(0)).removeNotification(anyString(), eq(true)) in <lambda>() 220 verify(headsUpManager, times(0)).removeNotification(anyString(), any()) in <lambda>() 237 verify(headsUpManager, times(1)).removeNotification(eq(entry.key), any()) in <lambda>() 252 verify(headsUpManager, times(1)).removeNotification(eq(entry.key), any()) in <lambda>() 264 verify(headsUpManager, times(0)).removeNotification(anyString(), eq(false)) in <lambda>() 265 verify(headsUpManager, times(0)).removeNotification(anyString(), eq(true)) in <lambda>() 276 verify(headsUpManager, times(1)).removeNotification(anyString(), eq(false)) in <lambda>() [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/plugin/src/com/android/systemui/plugins/ |
D | NotificationListenerController.java | 80 void removeNotification(StatusBarNotification sbn); in removeNotification() method
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/policy/ |
D | BaseHeadsUpManagerTest.java | 240 final boolean removedImmediately = alm.removeNotification( in testRemoveNotification_removeDeferred() 253 final boolean removedImmediately = alm.removeNotification( in testRemoveNotification_forceRemove() 429 final boolean removedImmediately = hum.removeNotification( in testRemoveNotification_beforeMinimumDisplayTime() 451 final boolean removedImmediately = hum.removeNotification( in testRemoveNotification_afterMinimumDisplayTime() 465 final boolean removedImmediately = hum.removeNotification( in testRemoveNotification_releaseImmediately()
|
D | TestableHeadsUpManager.java | 102 public boolean removeNotification(@NonNull String key, boolean releaseImmediately, in removeNotification() method in TestableHeadsUpManager
|
D | HeadsUpManagerPhoneTest.java | 193 final boolean removedImmediately = hmp.removeNotification(entry.getKey(), in testSwipedOutNotification()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/wmshell/ |
D | BubblesManager.java | 355 cb.removeNotification(entry, getDismissedByUserStats(entry, true), in BubblesManager() 549 cb.removeNotification(children.get(i), in handleDismissalInterception() 555 cb.removeNotification(entry, getDismissedByUserStats(entry, true), in handleDismissalInterception() 704 void removeNotification(@NonNull NotificationEntry entry,
|
/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/statusbar/notification/ |
D | NotificationTransitionAnimatorController.kt | 175 headsUpManager.removeNotification(row.entry.key, true /* releaseImmediately */, animate) in removeHun()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | StatusBarNotificationActivityStarterTest.java | 437 verify(mHeadsUpManager).removeNotification(entry.getKey(), true); in testOnNotificationBubbleIconClicked_unbubble_keyGuardShowing() 459 verify(mHeadsUpManager).removeNotification(entry.getKey(), true); in testOnNotificationBubbleIconClicked_bubble_keyGuardShowing()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wmshell/ |
D | BubblesTest.java | 663 verify(mNotifCallback, never()).removeNotification(eq(mRow), any(), anyInt()); in testRemoveBubble_withDismissedNotif_inOverflow() 686 verify(mNotifCallback, times(1)).removeNotification(eq(mRow), in testRemoveBubble_withDismissedNotif_notInOverflow() 1209 verify(mNotifCallback, times(1)).removeNotification( in testSummaryDismissalMarksBubblesHiddenFromShadeAndDismissesNonBubbledChildren() 1211 verify(mNotifCallback, times(1)).removeNotification( in testSummaryDismissalMarksBubblesHiddenFromShadeAndDismissesNonBubbledChildren() 1213 verify(mNotifCallback, never()).removeNotification(eq(groupedBubble.getEntry()), in testSummaryDismissalMarksBubblesHiddenFromShadeAndDismissesNonBubbledChildren()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | ExpandableNotificationRow.java | 914 mChildrenContainer.removeNotification(row); 932 mChildrenContainer.removeNotification(child);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationChildrenContainer.java | 360 public void removeNotification(ExpandableNotificationRow row) {
|
D | NotificationStackScrollLayoutController.java | 636 mHeadsUpManager.removeNotification(row.getEntry().getSbn().getKey(),
|
/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |