Searched refs:tzhour (Results 1 – 5 of 5) sorted by relevance
/external/dng_sdk/source/ |
D | dng_date_time.cpp | 352 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/ |
D | cpdfsdk_datetime.cpp | 13 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.c | 824 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/ |
D | test_datetime.py | 3278 for tzhour in (0, 1, 1, 2): 3279 expectedbase = self.dstoff.replace(hour=tzhour)
|
/external/python/cpython3/Lib/test/ |
D | datetimetester.py | 4698 for tzhour in (0, 1, 1, 2): 4699 expectedbase = self.dstoff.replace(hour=tzhour)
|