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

/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DAlertReceiver.java449 ArrayList<AlertService.NotificationInfo> notificationInfos, String digestTitle,
451 if (notificationInfos == null || notificationInfos.size() < 1) {
456 int numEvents = notificationInfos.size();
457 long[] eventIds = new long[notificationInfos.size()];
458 long[] startMillis = new long[notificationInfos.size()];
459 for (int i = 0; i < notificationInfos.size(); i++) {
460 eventIds[i] = notificationInfos.get(i).eventId;
461 startMillis[i] = notificationInfos.get(i).startMillis;
500 for (AlertService.NotificationInfo info : notificationInfos) {
448 makeDigestNotification(Context context, ArrayList<AlertService.NotificationInfo> notificationInfos, String digestTitle, boolean expandable) argument
[all...]

Completed in 52 milliseconds