Home | History | Annotate | Download | only in calendar

Lines Matching refs:timeZone

71 import java.util.TimeZone;
270 * @param timeZone The time zone to set Calendar to, or **tbd**
272 public static void setTimeZone(Context context, String timeZone) {
273 mTZUtils.setTimeZone(context, timeZone);
741 recycle.timezone = Time.TIMEZONE_UTC;
743 recycle.timezone = tz;
751 recycle.timezone = tz;
753 recycle.timezone = Time.TIMEZONE_UTC;
768 recycle.timezone = tz;
1353 * @param context The calling context, used to get the timezone and do the
1380 public static void setMidnightUpdater(Handler h, Runnable r, String timezone) {
1381 if (h == null || r == null || timezone == null) {
1385 Time time = new Time(timezone);
1418 // All day events require special timezone adjustment.
1475 * Returns the timezone to display in the event info, if the local timezone is different
1476 * from the event timezone. Otherwise returns null.
1483 TimeZone tz = TimeZone.getTimeZone(localTimezone);
1489 tzDisplay = tz.getDisplayName(startTime.isDst != 0, TimeZone.SHORT);
1647 public static void setTodayIcon(LayerDrawable icon, Context c, String timezone) {
1658 Time now = new Time(timezone);