Home
last modified time | relevance | path

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

/packages/apps/Calendar/tests/src/com/android/calendar/alerts/
DAlertServiceTest.java265 assertEquals(0, AlertUtils.EXPIRED_GROUP_NOTIFICATION_ID); in NotificationTestManager()
429 ntm.expectTestNotification(AlertUtils.EXPIRED_GROUP_NOTIFICATION_ID, id, PRIORITY_MIN); in testGenerateAlerts_single()
437 ntm.expectTestNotification(AlertUtils.EXPIRED_GROUP_NOTIFICATION_ID, id, PRIORITY_MIN); in testGenerateAlerts_single()
489 ntm.expectTestNotification(AlertUtils.EXPIRED_GROUP_NOTIFICATION_ID, in testGenerateAlerts_multiple()
502 ntm.expectTestNotification(AlertUtils.EXPIRED_GROUP_NOTIFICATION_ID, in testGenerateAlerts_multiple()
511 ntm.expectTestNotification(AlertUtils.EXPIRED_GROUP_NOTIFICATION_ID, in testGenerateAlerts_multiple()
561 ntm.expectTestNotification(AlertUtils.EXPIRED_GROUP_NOTIFICATION_ID, in testGenerateAlerts_maxAlerts()
574 ntm.expectTestNotification(AlertUtils.EXPIRED_GROUP_NOTIFICATION_ID, in testGenerateAlerts_maxAlerts()
680 ntm.expectTestNotification(AlertUtils.EXPIRED_GROUP_NOTIFICATION_ID, id1, PRIORITY_MIN); in testGenerateAlerts_refreshTime()
691 ntm.expectTestNotification(AlertUtils.EXPIRED_GROUP_NOTIFICATION_ID, new int[] {id3, id1}, in testGenerateAlerts_refreshTime()
[all …]
/packages/apps/Calendar/src/com/android/calendar/alerts/
DSnoozeAlarmsService.java58 AlertUtils.EXPIRED_GROUP_NOTIFICATION_ID); in onHandleIntent()
64 if (notificationId != AlertUtils.EXPIRED_GROUP_NOTIFICATION_ID) { in onHandleIntent()
DAlertService.java382 AlertUtils.EXPIRED_GROUP_NOTIFICATION_ID, false, in generateAlerts()
398 + ", notificationId:" + AlertUtils.EXPIRED_GROUP_NOTIFICATION_ID); in generateAlerts()
402 nm.notify(AlertUtils.EXPIRED_GROUP_NOTIFICATION_ID, notification); in generateAlerts()
404 nm.cancel(AlertUtils.EXPIRED_GROUP_NOTIFICATION_ID); in generateAlerts()
DAlertUtils.java51 public static final int EXPIRED_GROUP_NOTIFICATION_ID = 0; field in AlertUtils