Searched defs:allPendingIntents (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/app/
H A DNotification.java846 public ArraySet<PendingIntent> allPendingIntents; field in class:Notification
1865 allPendingIntents = (ArraySet<PendingIntent>) parcel.readArraySet(null);
2048 if (!ArrayUtils.isEmpty(allPendingIntents)) {
2049 that.allPendingIntents = new ArraySet<>(allPendingIntents);
2187 final boolean collectPendingIntents = (allPendingIntents == null);
2192 if (allPendingIntents == null) {
2193 allPendingIntents = new ArraySet<>();
2195 allPendingIntents.add(intent);
2204 parcel.writeArraySet(allPendingIntents);
[all...]

Completed in 16 milliseconds