Home | History | Annotate | Download | only in calendar

Lines Matching defs:tz

267      * tz will be ignored.
735 * @param tz The time zone to convert this time to.
737 public static long convertAlldayUtcToLocal(Time recycle, long utcTime, String tz) {
743 recycle.timezone = tz;
747 public static long convertAlldayLocalToUTC(Time recycle, long localTime, String tz) {
751 recycle.timezone = tz;
762 * @param tz The time zone to convert this time to.
764 public static long getNextMidnight(Time recycle, long theTime, String tz) {
768 recycle.timezone = tz;
1483 TimeZone tz = TimeZone.getTimeZone(localTimezone);
1484 if (tz == null || tz.getID().equals("GMT")) {
1489 tzDisplay = tz.getDisplayName(startTime.isDst != 0, TimeZone.SHORT);