Searched refs:tzMin (Results 1 – 2 of 2) sorted by relevance
717 int tzMin = t.tm_min - zt.tm_min; in CurrentDateTimeAndZone() local722 (t.tm_year == zt.tm_year && t.tm_yday == zt.tm_yday && tzHour == 0 && tzMin >= 0); in CurrentDateTimeAndZone()724 tzMin += tzHour * 60; in CurrentDateTimeAndZone()729 while (tzMin < 0) in CurrentDateTimeAndZone()730 tzMin += 24 * 60; in CurrentDateTimeAndZone()737 while (tzMin > 0) in CurrentDateTimeAndZone()738 tzMin -= 24 * 60; in CurrentDateTimeAndZone()744 zone.SetOffsetMinutes (tzMin); in CurrentDateTimeAndZone()
255 String tzMin = Integer.toString(tzAbsolute/60 - (tzAbsolute/3600)*60); in exportDate()258 + (tzMin.length() == 1 ? "0" + tzMin : tzMin); in exportDate()