Searched defs:notificationList (Results 1 - 2 of 2) sorted by last modified time

/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationManagerService.java3130 ArrayList<NotificationRecord> notificationList, String pkg, int notificationId,
3133 notificationList, pkg, null, notificationId, userId);
4477 private void cancelAllNotificationsByListLocked(ArrayList<NotificationRecord> notificationList, argument
4482 for (int i = notificationList.size() - 1; i >= 0; --i) {
4483 NotificationRecord r = notificationList.get(i);
4508 notificationList.remove(i);
4603 private void cancelGroupChildrenByListLocked(ArrayList<NotificationRecord> notificationList, argument
4609 for (int i = notificationList.size() - 1; i >= 0; i--) {
4610 final NotificationRecord childR = notificationList.get(i);
4617 notificationList
[all...]
H A DRankingHelper.java405 public void sort(ArrayList<NotificationRecord> notificationList) { argument
406 final int N = notificationList.size();
409 notificationList.get(i).setGlobalSortKey(null);
413 Collections.sort(notificationList, mPreliminaryComparator);
418 final NotificationRecord record = notificationList.get(i);
430 final NotificationRecord record = notificationList.get(i);
463 Collections.sort(notificationList, mFinalComparator);
466 public int indexOf(ArrayList<NotificationRecord> notificationList, NotificationRecord target) { argument
467 return Collections.binarySearch(notificationList, target, mFinalComparator);

Completed in 48 milliseconds