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

/packages/apps/Calendar/tests/src/com/android/calendar/alerts/
H A DAlertServiceTest.java272 public void expectTestNotification(int notificationId, int alertId, int highPriority) { argument
274 highPriority);
736 ArrayList<NotificationInfo> highPriority = new ArrayList<NotificationInfo>();
740 AlertService.processQuery(at.getAlertCursor(), mContext, currentTime, highPriority,
745 assertEquals(1, highPriority.size());
746 assertEquals(acceptedEventId, highPriority.get(0).eventId);
747 assertEquals(acceptedStartTime, highPriority.get(0).startMillis);
748 assertEquals(acceptedEndTime, highPriority.get(0).endMillis);
749 assertTrue(highPriority.get(0).allDay);
763 ArrayList<NotificationInfo> highPriority
[all...]
/packages/apps/Settings/src/com/android/settings/notification/
H A DNotificationAppList.java562 public boolean setHighPriority(String pkg, int uid, boolean highPriority) { argument
565 highPriority ? Notification.PRIORITY_MAX : Notification.PRIORITY_DEFAULT);
/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DAlertService.java863 Context context, boolean highPriority, NotificationPrefs prefs,
866 if (highPriority) {
895 + (highPriority ? ", high-priority" : ""));
862 postNotification(NotificationInfo info, String summaryText, Context context, boolean highPriority, NotificationPrefs prefs, NotificationMgr notificationMgr, int notificationId) argument

Completed in 90 milliseconds