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

/frameworks/base/services/core/java/com/android/server/notification/
H A DRankingHelper.java236 public void sort(ArrayList<NotificationRecord> notificationList) { argument
237 final int N = notificationList.size();
240 notificationList.get(i).setGlobalSortKey(null);
244 Collections.sort(notificationList, mPreliminaryComparator);
249 final NotificationRecord record = notificationList.get(i);
260 final NotificationRecord record = notificationList.get(i);
291 Collections.sort(notificationList, mFinalComparator);
294 public int indexOf(ArrayList<NotificationRecord> notificationList, NotificationRecord target) { argument
295 return Collections.binarySearch(notificationList, target, mFinalComparator);

Completed in 179 milliseconds