Home
last modified time | relevance | path

Searched refs:CATEGORY_REMINDER (Results 1 – 3 of 3) sorted by relevance

/packages/modules/ExtServices/src/android/ext/services/notification/
DNotificationCategorizer.java43 protected static final int CATEGORY_REMINDER = 2; field in NotificationCategorizer
53 CATEGORY_SYSTEM_LOW, CATEGORY_EVENT, CATEGORY_REMINDER, CATEGORY_SYSTEM,
75 if (entry.isCategory(Notification.CATEGORY_REMINDER)) { in getCategory()
76 return CATEGORY_REMINDER; in getCategory()
DAgingHelper.java82 || category > NotificationCategorizer.CATEGORY_REMINDER) { in onNotificationSeen()
/packages/modules/ExtServices/tests/src/android/ext/services/notification/
DNotificationCategorizerTest.java149 when(mEntry.isCategory(Notification.CATEGORY_REMINDER)).thenReturn(true); in testReminderCategory()
151 assertEquals(NotificationCategorizer.CATEGORY_REMINDER, nc.getCategory(mEntry)); in testReminderCategory()
152 assertFalse(nc.shouldSilence(NotificationCategorizer.CATEGORY_REMINDER)); in testReminderCategory()
154 when(mEntry.isCategory(Notification.CATEGORY_REMINDER)).thenReturn(false); in testReminderCategory()