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

/packages/services/BuiltInPrintService/src/com/android/bips/ipp/
H A DCapabilitiesCache.java112 * @param highPriority if true, perform this query before others
116 public void request(DiscoveredPrinter printer, boolean highPriority, argument
118 if (DEBUG) Log.d(TAG, "request() printer=" + printer + " high=" + highPriority);
130 if (highPriority) {
146 if (highPriority) {
147 request.highPriority = true;
234 } else if (found == null || (!found.highPriority && request.highPriority) ||
235 (found.highPriority == request.highPriority
251 boolean highPriority = false; field in class:CapabilitiesCache.Request
[all...]
/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/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 118 milliseconds