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.java953 public ArraySet<PendingIntent> allPendingIntents; field in Notification
2241 allPendingIntents = (ArraySet<PendingIntent>) parcel.readArraySet(null); in Notification()
2434 if (!ArrayUtils.isEmpty(allPendingIntents)) { in cloneInto()
2435 that.allPendingIntents = new ArraySet<>(allPendingIntents); in cloneInto()
2649 final boolean collectPendingIntents = (allPendingIntents == null); in writeToParcel()
2655 if (allPendingIntents == null) { in writeToParcel()
2656 allPendingIntents = new ArraySet<>(); in writeToParcel()
2658 allPendingIntents.add(intent); in writeToParcel()
2669 parcel.writeArraySet(allPendingIntents); in writeToParcel()
6060 mN.allPendingIntents = null;
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationManagerService.java5766 if (notification.allPendingIntents != null) {
5767 final int intentCount = notification.allPendingIntents.size();
5774 PendingIntent pendingIntent = notification.allPendingIntents.valueAt(i);