Home
last modified time | relevance | path

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

/packages/apps/DeskClock/src/com/android/deskclock/data/
DStopwatchModel.kt67 fun addStopwatchListener(stopwatchListener: StopwatchListener) { in addStopwatchListener()
68 mStopwatchListeners.add(stopwatchListener) in addStopwatchListener()
74 fun removeStopwatchListener(stopwatchListener: StopwatchListener) { in removeStopwatchListener()
75 mStopwatchListeners.remove(stopwatchListener) in removeStopwatchListener()
110 for (stopwatchListener in mStopwatchListeners) { in setStopwatch() constant
111 stopwatchListener.stopwatchUpdated(before, stopwatch) in setStopwatch()
150 for (stopwatchListener in mStopwatchListeners) { in addLap() constant
151 stopwatchListener.lapAdded(lap) in addLap()
DStopwatchModel.java81 void addStopwatchListener(StopwatchListener stopwatchListener) { in addStopwatchListener() argument
82 mStopwatchListeners.add(stopwatchListener); in addStopwatchListener()
88 void removeStopwatchListener(StopwatchListener stopwatchListener) { in removeStopwatchListener() argument
89 mStopwatchListeners.remove(stopwatchListener); in removeStopwatchListener()
123 for (StopwatchListener stopwatchListener : mStopwatchListeners) { in setStopwatch()
124 stopwatchListener.stopwatchUpdated(before, stopwatch); in setStopwatch()
164 for (StopwatchListener stopwatchListener : mStopwatchListeners) { in addLap()
165 stopwatchListener.lapAdded(lap); in addLap()
DDataModel.java748 public void addStopwatchListener(StopwatchListener stopwatchListener) { in addStopwatchListener() argument
750 mStopwatchModel.addStopwatchListener(stopwatchListener); in addStopwatchListener()
756 public void removeStopwatchListener(StopwatchListener stopwatchListener) { in removeStopwatchListener() argument
758 mStopwatchModel.removeStopwatchListener(stopwatchListener); in removeStopwatchListener()
DDataModel.kt740 fun addStopwatchListener(stopwatchListener: StopwatchListener) { in addStopwatchListener()
742 mStopwatchModel?.addStopwatchListener(stopwatchListener) in addStopwatchListener()
748 fun removeStopwatchListener(stopwatchListener: StopwatchListener) { in removeStopwatchListener()
750 mStopwatchModel?.removeStopwatchListener(stopwatchListener) in removeStopwatchListener()