Home
last modified time | relevance | path

Searched refs:allPendingIntents (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/app/
DNotificationTest.java204 assertTrue(n2.allPendingIntents.contains(intent2)); in allPendingIntents_recollectedAfterReusingBuilder()
222 assertTrue(n.allPendingIntents.contains(intent)); in allPendingIntents_containsCustomRemoteViews()
/frameworks/base/core/java/android/app/
DNotification.java943 public ArraySet<PendingIntent> allPendingIntents; field in Notification
2199 allPendingIntents = (ArraySet<PendingIntent>) parcel.readArraySet(null); in Notification()
2392 if (!ArrayUtils.isEmpty(allPendingIntents)) { in cloneInto()
2393 that.allPendingIntents = new ArraySet<>(allPendingIntents); in cloneInto()
2575 final boolean collectPendingIntents = (allPendingIntents == null); in writeToParcel()
2580 if (allPendingIntents == null) { in writeToParcel()
2581 allPendingIntents = new ArraySet<>(); in writeToParcel()
2583 allPendingIntents.add(intent); in writeToParcel()
2592 parcel.writeArraySet(allPendingIntents); in writeToParcel()
5910 mN.allPendingIntents = null;
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationManagerService.java4759 if (notification.allPendingIntents != null) {
4760 final int intentCount = notification.allPendingIntents.size();
4767 PendingIntent pendingIntent = notification.allPendingIntents.valueAt(i);