Home
last modified time | relevance | path

Searched refs:tzMin (Results 1 – 2 of 2) sorted by relevance

/external/dng_sdk/source/
Ddng_date_time.cpp717 int tzMin = t.tm_min - zt.tm_min; in CurrentDateTimeAndZone() local
722 (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()
/external/jsilver/src/org/clearsilver/jni/
DJniHdf.java255 String tzMin = Integer.toString(tzAbsolute/60 - (tzAbsolute/3600)*60); in exportDate()
258 + (tzMin.length() == 1 ? "0" + tzMin : tzMin); in exportDate()