Home
last modified time | relevance | path

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

/third_party/gstreamer/gstreamer/gst/
Dgstdatetime.c713 gint tzhour, tzminute; in gst_date_time_new() local
740 tzhour = (gint) ABS (tzoffset); in gst_date_time_new()
741 tzminute = (gint) ((ABS (tzoffset) - tzhour) * 60); in gst_date_time_new()
743 g_snprintf (buf, 6, "%c%02d%02d", tzoffset >= 0 ? '+' : '-', tzhour, in gst_date_time_new()
826 guint tzhour, tzminute; in __gst_date_time_serialize() local
828 tzhour = (guint) ABS (gmt_offset); in __gst_date_time_serialize()
829 tzminute = (guint) ((ABS (gmt_offset) - tzhour) * 60); in __gst_date_time_serialize()
832 g_string_append_printf (s, "%02u%02u", tzhour, tzminute); in __gst_date_time_serialize()
/third_party/skia/third_party/externals/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()
/third_party/python/Modules/
D_datetimemodule.c832 int tzhour = 0, tzminute = 0, tzsecond = 0; in parse_isoformat_time() local
833 rv = parse_hh_mm_ss_ff(tzinfo_pos, p_end, &tzhour, &tzminute, &tzsecond, in parse_isoformat_time()
836 *tzoffset = tzsign * ((tzhour * 3600) + (tzminute * 60) + tzsecond); in parse_isoformat_time()
/third_party/python/Lib/test/
Ddatetimetester.py4957 for tzhour in (0, 1, 1, 2):
4958 expectedbase = self.dstoff.replace(hour=tzhour)