Home
last modified time | relevance | path

Searched refs:tzoffset (Results 1 - 12 of 12) sorted by relevance

/third_party/python/Lib/email/
H A D_parseaddr.py159 tzoffset = None
162 tzoffset = _timezones[tz]
165 tzoffset = int(tz)
168 if tzoffset==0 and tz.startswith('-'):
169 tzoffset = None
171 if tzoffset:
172 if tzoffset < 0:
174 tzoffset = -tzoffset
177 tzoffset
[all...]
/third_party/icu/icu4c/source/test/cintltst/
H A Dputiltst.c212 int32_t tzoffset = uprv_timezone(); in TestPUtilAPI() local
213 log_verbose("Value returned from uprv_timezone = %d\n", tzoffset); in TestPUtilAPI()
214 if (tzoffset != 28800) { in TestPUtilAPI()
217 if ((tzoffset % 1800 != 0)) { in TestPUtilAPI()
218 log_info("Note: t_timezone offset of %ld (for %s : %s) is not a multiple of 30min.", tzoffset, uprv_tzname(0), uprv_tzname(1)); in TestPUtilAPI()
220 /*tzoffset=uprv_getUTCtime();*/ in TestPUtilAPI()
/third_party/ffmpeg/libavutil/
H A Dparseutils.c708 int tzoffset = 0; in av_parse_time() local
722 tzoffset = sign * (tz.tm_hour * 60 + tz.tm_min) * 60; in av_parse_time()
734 t += tzoffset; in av_parse_time()
/third_party/icu/icu4c/source/test/intltest/
H A Dtztest.cpp132 int32_t tzoffset = uprv_timezone(); in TestGenericAPI() local
133 if ((tzoffset % 900) != 0) { in TestGenericAPI()
141 infoln("WARNING: t_timezone may be incorrect. It is not a multiple of 15min.", tzoffset); in TestGenericAPI()
146 logln("hostZone->getRawOffset() = %d , tzoffset = %d", hostZoneRawOffset, tzoffset * (-1000)); in TestGenericAPI()
149 if (hostZoneRawOffset != tzoffset * (-1000)) { in TestGenericAPI()
H A Dcaltest.cpp407 int32_t tzoffset = 123400; in TestGenericAPI() local
409 SimpleTimeZone *zone = new SimpleTimeZone(tzoffset, tzid); in TestGenericAPI()
469 z->getRawOffset() != tzoffset) in TestGenericAPI()
/third_party/python/Modules/
H A D_datetimemodule.c876 int *second, int *microsecond, int *tzoffset, in parse_isoformat_time()
882 // 0: Success (no tzoffset) in parse_isoformat_time()
883 // 1: Success (with tzoffset) in parse_isoformat_time()
917 *tzoffset = 0; in parse_isoformat_time()
933 *tzoffset = tzsign * ((tzhour * 3600) + (tzminute * 60) + tzsecond); in parse_isoformat_time()
1401 tzinfo_from_isoformat_results(int rv, int tzoffset, int tz_useconds) in tzinfo_from_isoformat_results() argument
1406 if (tzoffset == 0) { in tzinfo_from_isoformat_results()
1411 PyObject *delta = new_delta(0, tzoffset, tz_useconds, 1); in tzinfo_from_isoformat_results()
4652 int tzoffset, tzimicrosecond = 0; in time_fromisoformat() local
4655 &tzoffset, in time_fromisoformat()
875 parse_isoformat_time(const char *dtstr, size_t dtlen, int *hour, int *minute, int *second, int *microsecond, int *tzoffset, int *tzmicrosecond) parse_isoformat_time() argument
5470 int tzoffset = 0, tzusec = 0; datetime_fromisoformat() local
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
H A DCompatibilityTest.java278 int tzoffset = 123400; in TestGenericAPI()
280 SimpleTimeZone zone = new SimpleTimeZone(tzoffset, tzid); in TestGenericAPI()
315 z.getRawOffset() != tzoffset) in TestGenericAPI()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/calendar/
H A DCompatibilityTest.java281 int tzoffset = 123400; in TestGenericAPI()
283 SimpleTimeZone zone = new SimpleTimeZone(tzoffset, tzid); in TestGenericAPI()
318 z.getRawOffset() != tzoffset) in TestGenericAPI()
/third_party/icu/icu4c/source/i18n/
H A Dtimezone.cpp879 int32_t tzoffset = z->getRawOffset(); in create() local
882 if (tzoffset != *rawOffset) { in create()
/third_party/node/deps/icu-small/source/i18n/
H A Dtimezone.cpp879 int32_t tzoffset = z->getRawOffset(); in create() local
882 if (tzoffset != *rawOffset) { in create()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dtimezone.cpp880 int32_t tzoffset = z->getRawOffset(); in create() local
883 if (tzoffset != *rawOffset) { in create()
/third_party/python/Lib/test/test_email/
H A Dtest_email.py1810 tzoffset = ' %s%04d' % (sign, tzsecs / 36)
1813 time.localtime(now)) + tzoffset

Completed in 39 milliseconds