Home
last modified time | relevance | path

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

/packages/apps/DeskClock/src/com/android/deskclock/data/
DDataModel.java188 private StopwatchModel mStopwatchModel; field in DataModel
220 mStopwatchModel = new StopwatchModel(mContext, prefs, mNotificationModel); in init()
242 mStopwatchModel.setStopwatch(getStopwatch().updateAfterReboot()); in updateAfterReboot()
251 mStopwatchModel.setStopwatch(getStopwatch().updateAfterTimeSet()); in updateAfterTimeSet()
301 mStopwatchModel.updateNotification(); in setApplicationInForeground()
322 mStopwatchModel.updateNotification(); in updateAllNotifications()
750 mStopwatchModel.addStopwatchListener(stopwatchListener); in addStopwatchListener()
758 mStopwatchModel.removeStopwatchListener(stopwatchListener); in removeStopwatchListener()
766 return mStopwatchModel.getStopwatch(); in getStopwatch()
774 return mStopwatchModel.setStopwatch(getStopwatch().start()); in startStopwatch()
[all …]
DDataModel.kt173 private var mStopwatchModel: StopwatchModel? = null variable in com.android.deskclock.data.DataModel
198 mStopwatchModel = StopwatchModel(mContext!!, prefs, mNotificationModel!!) in init()
220 mStopwatchModel!!.setStopwatch(stopwatch.updateAfterReboot()) in updateAfterReboot()
229 mStopwatchModel!!.setStopwatch(stopwatch.updateAfterTimeSet()) in updateAfterTimeSet()
289 mStopwatchModel!!.updateNotification()
302 mStopwatchModel!!.updateNotification() in updateAllNotifications()
742 mStopwatchModel?.addStopwatchListener(stopwatchListener) in addStopwatchListener()
750 mStopwatchModel?.removeStopwatchListener(stopwatchListener) in removeStopwatchListener()
759 return mStopwatchModel!!.stopwatch
767 return mStopwatchModel!!.setStopwatch(stopwatch.start()) in startStopwatch()
[all …]