Searched defs:tz (Results 1 - 6 of 6) sorted by relevance

/packages/apps/Settings/src/com/android/settings/
H A DDateTimeSettings.java366 /* package */ static String getTimeZoneText(TimeZone tz) { argument
367 boolean daylight = tz.inDaylightTime(new Date());
370 sb.append(formatOffset(tz.getRawOffset() +
371 (daylight ? tz.getDSTSavings() : 0))).
373 append(tz.getDisplayName(daylight, TimeZone.LONG));
H A DZonePicker.java55 public void onZoneSelected(TimeZone tz); argument
116 * @param tz TimeZone to be searched.
120 public static int getTimeZoneIndex(SimpleAdapter adapter, TimeZone tz) { argument
121 final String defaultId = tz.getID();
249 final TimeZone tz = TimeZone.getTimeZone(id);
250 final int offset = tz.getOffset(date);
287 final TimeZone tz = TimeZone.getTimeZone(tzId);
289 mListener.onZoneSelected(tz);
/packages/apps/Calendar/src/com/android/calendar/month/
H A DSimpleWeekView.java208 * @param tz The time zone this view should reference times in
210 public void setWeekParams(HashMap<String, Integer> params, String tz) { argument
215 mTimeZone = tz;
244 Time time = new Time(tz);
274 Time today = new Time(tz);
H A DMonthWeekEventsView.java455 public void setWeekParams(HashMap<String, Integer> params, String tz) { argument
456 super.setWeekParams(params, tz);
462 updateToday(tz);
484 * @param tz
486 public boolean updateToday(String tz) { argument
487 mToday.timezone = tz;
/packages/apps/Calendar/src/com/android/calendar/
H A DUtils.java159 * tz will be ignored.
505 * @param tz The time zone to convert this time to.
507 public static long convertAlldayUtcToLocal(Time recycle, long utcTime, String tz) { argument
513 recycle.timezone = tz;
517 public static long convertAlldayLocalToUTC(Time recycle, long localTime, String tz) { argument
521 recycle.timezone = tz;
532 * @param tz The time zone to convert this time to.
534 public static long getNextMidnight(Time recycle, long theTime, String tz) { argument
538 recycle.timezone = tz;
/packages/apps/Exchange/src/com/android/exchange/utility/
H A DCalendarUtilities.java329 * @param tz a TimeZone the time zone in which we're looking for transitions
335 static GregorianCalendar findTransitionDate(TimeZone tz, long startTime, argument
344 boolean inDaylightTime = tz.inDaylightTime(date);
358 GregorianCalendar calendar = new GregorianCalendar(tz);
366 * @param tz the TimeZone
369 static public String timeZoneToTziString(TimeZone tz) { argument
370 String tziString = sTziStringCache.get(tz);
373 ExchangeService.log(TAG, "TZI string for " + tz.getDisplayName() +
378 tziString = timeZoneToTziStringImpl(tz);
379 sTziStringCache.put(tz, tziStrin
534 getDSTCalendars(TimeZone tz, GregorianCalendar[] toDaylightCalendars, GregorianCalendar[] toStandardCalendars) argument
579 writeNoDST(SimpleIcsWriter writer, TimeZone tz, String offsetString) argument
595 timeZoneToVTimezone(TimeZone tz, SimpleIcsWriter writer) argument
686 timeZoneToTziStringImpl(TimeZone tz) argument
912 millisToEasDateTime(long millis, TimeZone tz, boolean withTime) argument
972 transitionMillisToVCalendarTime(long millis, TimeZone tz, boolean dst) argument
[all...]

Completed in 82 milliseconds