Searched defs:notificationList (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/services/core/java/com/android/server/notification/
H A DRankingHelper.java460 public void sort(ArrayList<NotificationRecord> notificationList) { argument
461 final int N = notificationList.size();
464 notificationList.get(i).setGlobalSortKey(null);
468 Collections.sort(notificationList, mPreliminaryComparator);
473 final NotificationRecord record = notificationList.get(i);
484 final NotificationRecord record = notificationList.get(i);
517 Collections.sort(notificationList, mFinalComparator);
520 public int indexOf(ArrayList<NotificationRecord> notificationList, NotificationRecord target) { argument
521 return Collections.binarySearch(notificationList, target, mFinalComparator);
H A DNotificationManagerService.java3961 ArrayList<NotificationRecord> notificationList, String pkg, int notificationId,
3964 notificationList, pkg, null, notificationId, userId);
5769 private void cancelAllNotificationsByListLocked(ArrayList<NotificationRecord> notificationList, argument
5774 for (int i = notificationList.size() - 1; i >= 0; --i) {
5775 NotificationRecord r = notificationList.get(i);
5799 notificationList.remove(i);
5895 private void cancelGroupChildrenByListLocked(ArrayList<NotificationRecord> notificationList, argument
5901 for (int i = notificationList.size() - 1; i >= 0; i--) {
5902 final NotificationRecord childR = notificationList.get(i);
5910 notificationList
[all...]

Completed in 54 milliseconds