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

/frameworks/support/v4/api20/android/support/v4/app/
H A DNotificationCompatApi20.java191 public static boolean isGroupSummary(Notification notif) { method in class:NotificationCompatApi20
/frameworks/support/v4/kitkat/android/support/v4/app/
H A DNotificationCompatKitKat.java148 public static boolean isGroupSummary(Notification notif) { method in class:NotificationCompatKitKat
/frameworks/support/v4/jellybean/android/support/v4/app/
H A DNotificationCompatJellybean.java41 static final String EXTRA_GROUP_SUMMARY = "android.support.isGroupSummary";
399 public static boolean isGroupSummary(Notification n) { method in class:NotificationCompatJellybean
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java454 public boolean isGroupSummary(Notification n); method in interface:NotificationCompat.NotificationCompatImpl
517 public boolean isGroupSummary(Notification n) { method in class:NotificationCompat.NotificationCompatImplBase
628 public boolean isGroupSummary(Notification n) { method in class:NotificationCompat.NotificationCompatImplJellybean
629 return NotificationCompatJellybean.isGroupSummary(n);
679 public boolean isGroupSummary(Notification n) { method in class:NotificationCompat.NotificationCompatImplKitKat
680 return NotificationCompatKitKat.isGroupSummary(n);
733 public boolean isGroupSummary(Notification n) { method in class:NotificationCompat.NotificationCompatImplApi20
734 return NotificationCompatApi20.isGroupSummary(n);
1338 * @param isGroupSummary Whether this notification should be a group summary.
1341 public Builder setGroupSummary(boolean isGroupSummary) { argument
3307 public static boolean isGroupSummary(Notification notif) { method in class:NotificationCompat
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java1848 public boolean isGroupSummary() { method in class:Notification
2530 * @param isGroupSummary Whether this notification should be a group summary.
2533 public Builder setGroupSummary(boolean isGroupSummary) { argument
2534 setFlag(FLAG_GROUP_SUMMARY, isGroupSummary);

Completed in 2329 milliseconds