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
209 // Scan all timers and find the one that will expire next.
269 // No running timers.
274 // We have at least one timer running and other timers stoppe
382 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.java233 SharedPreferences prefs, ArrayList<TimerObj> timers) {
241 timers.add(t);
243 Collections.sort(timers, new Comparator<TimerObj>() {
253 SharedPreferences prefs, ArrayList<TimerObj> timers, int match) {
262 timers.add(t);
269 SharedPreferences prefs, ArrayList<TimerObj> timers) {
270 if (timers.size() > 0) {
271 for (int i = 0; i < timers.size(); i++) {
272 timers.get(i).writeToSharedPref(prefs);
281 Log.v(TAG,"--------------------- timers lis
232 getTimersFromSharedPrefs( SharedPreferences prefs, ArrayList<TimerObj> timers) argument
252 getTimersFromSharedPrefs( SharedPreferences prefs, ArrayList<TimerObj> timers, int match) argument
268 putTimersInSharedPrefs( SharedPreferences prefs, ArrayList<TimerObj> timers) argument
[all...]

Completed in 251 milliseconds