Home
last modified time | relevance | path

Searched refs:sCurrentTimeFactory (Results 1 – 2 of 2) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/alarms/
DAlarmStateManager.kt186 private var sCurrentTimeFactory: CurrentTimeFactory? = null in <lambda>() variable
192 get() = (if (sCurrentTimeFactory == null) { in <lambda>()
195 sCurrentTimeFactory!!.currentTime in <lambda>()
199 sCurrentTimeFactory = currentTimeFactory in <lambda>()
DAlarmStateManager.java140 private static CurrentTimeFactory sCurrentTimeFactory; field in AlarmStateManager
147 return sCurrentTimeFactory == null in getCurrentTime()
149 : sCurrentTimeFactory.getCurrentTime(); in getCurrentTime()
153 sCurrentTimeFactory = currentTimeFactory; in setCurrentTimeFactory()