Home | History | Annotate | Download | only in widget

Lines Matching refs:today

106     // If this view contains the today
112 // Which day is today [0-6] or -1 if no day is today
338 // Figure out what day today is
339 final Time today = new Time(Time.getCurrentTimezone());
340 today.setToNow();
365 if (sameDay(day, today)) {
410 private boolean sameDay(int day, Time today) {
411 return mYear == today.year &&
412 mMonth == today.month &&
413 day == today.monthDay;