Home | History | Annotate | Download | only in timer

Lines Matching defs:timers

210             SharedPreferences prefs, ArrayList<TimerObj> timers) {
218 timers.add(t);
220 Collections.sort(timers, new Comparator<TimerObj>() {
230 SharedPreferences prefs, ArrayList<TimerObj> timers, int match) {
239 timers.add(t);
246 SharedPreferences prefs, ArrayList<TimerObj> timers) {
247 if (timers.size() > 0) {
248 for (int i = 0; i < timers.size(); i++) {
249 TimerObj t = timers.get(i);
250 timers.get(i).writeToSharedPref(prefs);
259 Log.v(TAG,"--------------------- timers list in shared prefs");
269 ArrayList<TimerObj> timers = new ArrayList<TimerObj>();
270 getTimersFromSharedPrefs(prefs, timers);
271 Iterator<TimerObj> i = timers.iterator();