Searched defs:timers (Results 1 - 3 of 3) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/timer/
H A DTimerReceiver.java53 // This action does not need the timers data
59 // Get the updated timers data.
66 // These actions do not provide a timer ID, but do use the timers data
110 // Found no running timers.
124 // Stop Ringtone if all timers are not in times-up status
151 // Stop Ringtone if no timers are in times-up status
179 // Stop Ringtone if no timers are in times-up status
203 // Scan all timers and find the one that will expire next.
263 // No running timers.
268 // We have at least one timer running and other timers stoppe
375 getNextRunningTimer( ArrayList<TimerObj> timers, boolean requireNextUpdate, long now) argument
[all...]
H A DTimers.java49 public static TimerObj findTimer(ArrayList<TimerObj> timers, int timerId) { argument
50 Iterator<TimerObj> i = timers.iterator();
59 public static TimerObj findExpiredTimer(ArrayList<TimerObj> timers) { argument
60 Iterator<TimerObj> i = timers.iterator();
70 public static ArrayList<TimerObj> timersInUse(ArrayList<TimerObj> timers) { argument
71 ArrayList<TimerObj> result = (ArrayList<TimerObj>) timers.clone();
82 public static ArrayList<TimerObj> timersInTimesUp(ArrayList<TimerObj> timers) { argument
83 ArrayList<TimerObj> result = (ArrayList<TimerObj>) timers.clone();
H A DTimerObj.java242 SharedPreferences prefs, ArrayList<TimerObj> timers) {
250 timers.add(t);
252 Collections.sort(timers, new Comparator<TimerObj>() {
262 SharedPreferences prefs, ArrayList<TimerObj> timers, int match) {
271 timers.add(t);
278 SharedPreferences prefs, ArrayList<TimerObj> timers) {
279 if (timers.size() > 0) {
280 for (int i = 0; i < timers.size(); i++) {
281 TimerObj t = timers.get(i);
282 timers
241 getTimersFromSharedPrefs( SharedPreferences prefs, ArrayList<TimerObj> timers) argument
261 getTimersFromSharedPrefs( SharedPreferences prefs, ArrayList<TimerObj> timers, int match) argument
277 putTimersInSharedPrefs( SharedPreferences prefs, ArrayList<TimerObj> timers) argument
[all...]

Completed in 47 milliseconds