Home | History | Annotate | Download | only in calendar

Lines Matching defs:today

1348      * or a combination of yesterday/today/tomorrow and the day of the week.
1351 * @param todayJulianDay The julian day for today's date
1422 // If possible, use "Today" or "Tomorrow" instead of a full date string.
1425 if (TODAY == todayOrTomorrow) {
1426 datetimeString = resources.getString(R.string.today);
1433 // today or tomorrow, use framework formatter.
1444 // If possible, use "Today" or "Tomorrow" instead of a full date string.
1447 if (TODAY == todayOrTomorrow) {
1448 // Example: "Today at 1:00pm - 2:00 pm"
1511 private static final int TODAY = 1;
1516 * Returns TODAY or TOMORROW if applicable. Otherwise returns NONE.
1527 return TODAY;
1644 * Inserts a drawable with today's day into the today's icon in the option menu
1645 * @param icon - today's icon from the options menu
1648 DayOfMonthDrawable today;
1653 today = (DayOfMonthDrawable)currentDrawable;
1655 today = new DayOfMonthDrawable(c);
1661 today.setDayOfMonth(now.monthDay);
1663 icon.setDrawableByLayerId(R.id.today_icon_day, today);