Home
last modified time | relevance | path

Searched refs:tzhour (Results 1 – 3 of 3) sorted by relevance

/external/dng_sdk/source/
Ddng_date_time.cpp352 unsigned tzhour = 0; in Decode_ISO_8601() local
357 &tzhour, in Decode_ISO_8601()
361 fTimeZone.SetOffsetMinutes (sign * (tzhour * 60 + tzmin)); in Decode_ISO_8601()
556 unsigned tzhour = 0; in Decode_IPTC_Time() local
566 &tzhour, in Decode_IPTC_Time()
572 zone.SetOffsetMinutes (tzsign * (tzhour * 60 + tzmin)); in Decode_IPTC_Time()
/external/pdfium/fpdfsdk/
Dcpdfsdk_datetime.cpp13 int GetTimeZoneInSeconds(int8_t tzhour, uint8_t tzminute) { in GetTimeZoneInSeconds() argument
14 return (int)tzhour * 3600 + (int)tzminute * (tzhour >= 0 ? 60 : -60); in GetTimeZoneInSeconds()
/external/python/cpython2/Lib/test/
Dtest_datetime.py3238 for tzhour in (0, 1, 1, 2):
3239 expectedbase = self.dstoff.replace(hour=tzhour)