Home
last modified time | relevance | path

Searched refs:tzhour (Results 1 – 5 of 5) 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/cpython3/Modules/
D_datetimemodule.c824 int tzhour = 0, tzminute = 0, tzsecond = 0; in parse_isoformat_time() local
825 rv = parse_hh_mm_ss_ff(tzinfo_pos, p_end, &tzhour, &tzminute, &tzsecond, in parse_isoformat_time()
828 *tzoffset = tzsign * ((tzhour * 3600) + (tzminute * 60) + tzsecond); in parse_isoformat_time()
/external/python/cpython2/Lib/test/
Dtest_datetime.py3278 for tzhour in (0, 1, 1, 2):
3279 expectedbase = self.dstoff.replace(hour=tzhour)
/external/python/cpython3/Lib/test/
Ddatetimetester.py4698 for tzhour in (0, 1, 1, 2):
4699 expectedbase = self.dstoff.replace(hour=tzhour)