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.java950 public ArraySet<PendingIntent> allPendingIntents; field in Notification
2206 allPendingIntents = (ArraySet<PendingIntent>) parcel.readArraySet(null); in Notification()
2399 if (!ArrayUtils.isEmpty(allPendingIntents)) { in cloneInto()
2400 that.allPendingIntents = new ArraySet<>(allPendingIntents); in cloneInto()
2582 final boolean collectPendingIntents = (allPendingIntents == null); in writeToParcel()
2587 if (allPendingIntents == null) { in writeToParcel()
2588 allPendingIntents = new ArraySet<>(); in writeToParcel()
2590 allPendingIntents.add(intent); in writeToParcel()
2599 parcel.writeArraySet(allPendingIntents); in writeToParcel()
5910 mN.allPendingIntents = null;
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationManagerService.java4892 if (notification.allPendingIntents != null) {
4893 final int intentCount = notification.allPendingIntents.size();
4900 PendingIntent pendingIntent = notification.allPendingIntents.valueAt(i);