Home
last modified time | relevance | path

Searched refs:EXPIRY_COMPARATOR (Results 1 – 4 of 4) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/data/
DTimerModel.kt447 mExpiredTimers!!.sortWith(Timer.EXPIRY_COMPARATOR)
462 mMissedTimers!!.sortWith(Timer.EXPIRY_COMPARATOR)
707 unexpired.sortWith(Timer.EXPIRY_COMPARATOR) in updateNotification()
DTimerModel.java492 Collections.sort(mExpiredTimers, Timer.EXPIRY_COMPARATOR); in getMutableExpiredTimers()
507 Collections.sort(mMissedTimers, Timer.EXPIRY_COMPARATOR); in getMutableMissedTimers()
750 Collections.sort(unexpired, Timer.EXPIRY_COMPARATOR); in updateNotification()
DTimer.java410 static Comparator<Timer> EXPIRY_COMPARATOR = new Comparator<Timer>() { field in Timer
DTimer.kt359 var EXPIRY_COMPARATOR: Comparator<Timer> = object : Comparator<Timer> { in <lambda>() variable