/third_party/python/Lib/email/ |
D | _parseaddr.py | 151 tzoffset = None 154 tzoffset = _timezones[tz] 157 tzoffset = int(tz) 160 if tzoffset==0 and tz.startswith('-'): 161 tzoffset = None 163 if tzoffset: 164 if tzoffset < 0: 166 tzoffset = -tzoffset 169 tzoffset = tzsign * ( (tzoffset//100)*3600 + (tzoffset % 100)*60) 171 return [yy, mm, dd, thh, tmm, tss, 0, 1, -1, tzoffset]
|
/third_party/gstreamer/gstreamer/gst/ |
D | gstdatetime.c | 613 gst_date_time_new (gfloat tzoffset, gint year, gint month, gint day, gint hour, in gst_date_time_new() argument 629 g_return_val_if_fail (tzoffset >= -12.0 && tzoffset <= 12.0, NULL); in gst_date_time_new() 631 (hour == -1 && minute == -1 && seconds == -1 && tzoffset == 0.0), NULL); in gst_date_time_new() 633 tzhour = (gint) ABS (tzoffset); in gst_date_time_new() 634 tzminute = (gint) ((ABS (tzoffset) - tzhour) * 60); in gst_date_time_new() 636 g_snprintf (buf, 6, "%c%02d%02d", tzoffset >= 0 ? '+' : '-', tzhour, in gst_date_time_new() 770 gfloat tzoffset = 0.0; in gst_date_time_new_from_iso8601_string() local 884 tzoffset = gmt_offset / 60.0; in gst_date_time_new_from_iso8601_string() 886 GST_LOG ("Timezone offset: %f (%d minutes)", tzoffset, gmt_offset); in gst_date_time_new_from_iso8601_string() 898 if (tzoffset != 0.0) { in gst_date_time_new_from_iso8601_string() [all …]
|
D | gstdatetime.h | 126 GstDateTime * gst_date_time_new (gfloat tzoffset,
|
/third_party/icu/icu4c/source/test/cintltst/ |
D | putiltst.c | 211 int32_t tzoffset = uprv_timezone(); in TestPUtilAPI() local 212 log_verbose("Value returned from uprv_timezone = %d\n", tzoffset); in TestPUtilAPI() 213 if (tzoffset != 28800) { in TestPUtilAPI() 216 if ((tzoffset % 1800 != 0)) { in TestPUtilAPI() 217 …e: t_timezone offset of %ld (for %s : %s) is not a multiple of 30min.", tzoffset, uprv_tzname(0), … in TestPUtilAPI()
|
/third_party/ffmpeg/libavutil/ |
D | parseutils.c | 706 int tzoffset = 0; in av_parse_time() local 720 tzoffset = sign * (tz.tm_hour * 60 + tz.tm_min) * 60; in av_parse_time() 732 t += tzoffset; in av_parse_time()
|
/third_party/gstreamer/gstplugins_bad/ext/dash/ |
D | gstdashdemux.c | 3659 gfloat tzoffset; member 3699 gfloat tzoffset = 0; in gst_dash_demux_parse_http_head() local 3737 tzoffset = timezones[i].tzoffset; in gst_dash_demux_parse_http_head() 3754 tzoffset = hh; in gst_dash_demux_parse_http_head() 3755 tzoffset += mm / 60.0; in gst_dash_demux_parse_http_head() 3757 tzoffset = -tzoffset; in gst_dash_demux_parse_http_head() 3767 value = gst_date_time_new (tzoffset, in gst_dash_demux_parse_http_head()
|
D | gstmpdparser.c | 856 gfloat tzoffset = 0.0; in gst_mpdparser_get_xml_prop_dateTime() local 940 tzoffset = gmt_offset / 60.0; in gst_mpdparser_get_xml_prop_dateTime() 942 GST_LOG ("Timezone offset: %f (%d minutes)", tzoffset, gmt_offset); in gst_mpdparser_get_xml_prop_dateTime() 950 gst_date_time_new (tzoffset, year, month, day, hour, minute, second); in gst_mpdparser_get_xml_prop_dateTime()
|
/third_party/icu/icu4c/source/test/intltest/ |
D | tztest.cpp | 129 int32_t tzoffset = uprv_timezone(); in TestGenericAPI() local 130 if ((tzoffset % 900) != 0) { in TestGenericAPI() 138 infoln("WARNING: t_timezone may be incorrect. It is not a multiple of 15min.", tzoffset); in TestGenericAPI() 143 logln("hostZone->getRawOffset() = %d , tzoffset = %d", hostZoneRawOffset, tzoffset * (-1000)); in TestGenericAPI() 146 if (hostZoneRawOffset != tzoffset * (-1000)) { in TestGenericAPI()
|
D | caltest.cpp | 400 int32_t tzoffset = 123400; in TestGenericAPI() local 402 SimpleTimeZone *zone = new SimpleTimeZone(tzoffset, tzid); in TestGenericAPI() 462 z->getRawOffset() != tzoffset) in TestGenericAPI()
|
/third_party/python/Modules/ |
D | _datetimemodule.c | 790 int *second, int *microsecond, int *tzoffset, in parse_isoformat_time() argument 845 *tzoffset = tzsign * ((tzhour * 3600) + (tzminute * 60) + tzsecond); in parse_isoformat_time() 1313 tzinfo_from_isoformat_results(int rv, int tzoffset, int tz_useconds) in tzinfo_from_isoformat_results() argument 1318 if (tzoffset == 0) { in tzinfo_from_isoformat_results() 1323 PyObject *delta = new_delta(0, tzoffset, tz_useconds, 1); in tzinfo_from_isoformat_results() 4594 int tzoffset, tzimicrosecond = 0; in time_fromisoformat() local 4597 &tzoffset, &tzimicrosecond); in time_fromisoformat() 4603 PyObject *tzinfo = tzinfo_from_isoformat_results(rv, tzoffset, in time_fromisoformat() 5276 int tzoffset = 0, tzusec = 0; in datetime_fromisoformat() local 5302 µsecond, &tzoffset, &tzusec); in datetime_fromisoformat() [all …]
|
/third_party/node/deps/icu-small/source/i18n/ |
D | timezone.cpp | 880 int32_t tzoffset = z->getRawOffset(); in create() local 883 if (tzoffset != *rawOffset) { in create()
|
/third_party/flutter/skia/third_party/externals/icu/source/i18n/ |
D | timezone.cpp | 848 int32_t tzoffset = z->getRawOffset(); in create() local 851 if (tzoffset != *rawOffset) { in create()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | timezone.cpp | 880 int32_t tzoffset = z->getRawOffset(); in create() local 883 if (tzoffset != *rawOffset) { in create()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/calendar/ |
D | CompatibilityTest.java | 281 int tzoffset = 123400; in TestGenericAPI() local 283 SimpleTimeZone zone = new SimpleTimeZone(tzoffset, tzid); in TestGenericAPI()
|
/third_party/icu/icu4c/source/i18n/ |
D | timezone.cpp | 862 int32_t tzoffset = z->getRawOffset(); in create() local 865 if (tzoffset != *rawOffset) { in create()
|
/third_party/python/Lib/test/test_email/ |
D | test_email.py | 1776 tzoffset = ' %s%04d' % (sign, tzsecs / 36) 1779 time.localtime(now)) + tzoffset
|
/third_party/gstreamer/gstreamer/ |
D | ChangeLog | 66152 Correctly serialize tzoffset as a gstvalue
|