Searched refs:tzhour (Results 1 – 4 of 4) 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/python/cpython3/Modules/ |
D | _datetimemodule.c | 841 int tzhour = 0, tzminute = 0, tzsecond = 0; in parse_isoformat_time() local 842 rv = parse_hh_mm_ss_ff(tzinfo_pos, p_end, &tzhour, &tzminute, &tzsecond, in parse_isoformat_time() 845 *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 | 4956 for tzhour in (0, 1, 1, 2): 4957 expectedbase = self.dstoff.replace(hour=tzhour)
|