Home | History | Annotate | Download | only in calendar

Lines Matching defs:today

1125      * or a combination of yesterday/today/tomorrow and the day of the week.
1128 * @param todayJulianDay The julian day for today's date
1199 // If possible, use "Today" or "Tomorrow" instead of a full date string.
1202 if (TODAY == todayOrTomorrow) {
1203 datetimeString = resources.getString(R.string.today);
1210 // today or tomorrow, use framework formatter.
1221 // If possible, use "Today" or "Tomorrow" instead of a full date string.
1224 if (TODAY == todayOrTomorrow) {
1225 // Example: "Today at 1:00pm - 2:00 pm"
1288 private static final int TODAY = 1;
1293 * Returns TODAY or TOMORROW if applicable. Otherwise returns NONE.
1304 return TODAY;
1414 * Inserts a drawable with today's day into the today's icon in the option menu
1415 * @param icon - today's icon from the options menu
1418 DayOfMonthDrawable today;
1423 today = (DayOfMonthDrawable)currentDrawable;
1425 today = new DayOfMonthDrawable(c);
1431 today.setDayOfMonth(now.monthDay);
1433 icon.setDrawableByLayerId(R.id.today_icon_day, today);