Home
last modified time | relevance | path

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

/frameworks/base/core/tests/coretests/src/android/app/
DNotificationTest.java264 assertTrue(n2.allPendingIntents.contains(intent2)); in allPendingIntents_recollectedAfterReusingBuilder()
284 assertTrue(n.allPendingIntents.contains(intent)); in allPendingIntents_containsCustomRemoteViews()
305 assertThat(unparceled.allPendingIntents).containsExactly(contentIntent, actionIntent); in allPendingIntents_resilientToAnotherNotificationInExtras()
329 assertThat(unparceled.allPendingIntents).containsExactly(contentIntent, actionIntent, in allPendingIntents_alsoInPublicVersion()
331 assertThat(unparceled.publicVersion.allPendingIntents).containsExactly(publicContentIntent, in allPendingIntents_alsoInPublicVersion()
/frameworks/base/core/java/android/app/
DNotification.java1146 public ArraySet<PendingIntent> allPendingIntents; field in Notification
2670 allPendingIntents = (ArraySet<PendingIntent>) parcel.readArraySet(null); in Notification()
2873 if (!ArrayUtils.isEmpty(allPendingIntents)) { in cloneInto()
2874 that.allPendingIntents = new ArraySet<>(allPendingIntents); in cloneInto()
3290 if (allPendingIntents == null) { in writeToParcel()
3294 if (allPendingIntents == null) { in writeToParcel()
3295 allPendingIntents = new ArraySet<>(); in writeToParcel()
3297 allPendingIntents.add(intent); in writeToParcel()
3330 parcel.writeArraySet(allPendingIntents); in writeToParcel()
7332 mN.allPendingIntents = null; in build()
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationManagerService.java7524 if (notification.allPendingIntents != null) {
7525 final int intentCount = notification.allPendingIntents.size();
7530 PendingIntent pendingIntent = notification.allPendingIntents.valueAt(i);
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DNotificationManagerServiceTest.java14388 ArraySet<PendingIntent> allPendingIntents) {
14553 parcel.writeArraySet(allPendingIntents);