Home
last modified time | relevance | path

Searched refs:std_offset (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython3/Lib/zoneinfo/
D_zoneinfo.py433 self, std_abbr, std_offset, dst_abbr, dst_offset, start=None, end=None argument
435 self.dst_diff = dst_offset - std_offset
436 std_offset = _load_timedelta(std_offset)
438 utcoff=std_offset, dstoff=_load_timedelta(0), tzname=std_abbr
662 if std_offset := m.group("stdoff"):
664 std_offset = _parse_tz_delta(std_offset)
668 std_offset = 0
677 dst_offset = std_offset + 3600
688 return _TZStr(std_abbr, std_offset, dst_abbr, dst_offset, start, end)
694 _load_timedelta(std_offset), _load_timedelta(0), std_abbr
/external/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_posix.cc141 p = ParseOffset(p, 0, 24, -1, &res->std_offset); in ParsePosixSpec()
147 res->dst_offset = res->std_offset + (60 * 60); // default in ParsePosixSpec()
Dtime_zone_posix.h113 std::int_fast32_t std_offset; member
Dtime_zone_info.cc310 CheckTransition(name, tt, posix.std_offset, false, posix.std_abbr); in ExtendTransitions()
356 CheckTransition(name, std, posix.std_offset, false, posix.std_abbr); in ExtendTransitions()
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_posix.cc141 p = ParseOffset(p, 0, 24, -1, &res->std_offset); in ParsePosixSpec()
147 res->dst_offset = res->std_offset + (60 * 60); // default in ParsePosixSpec()
Dtime_zone_posix.h113 std::int_fast32_t std_offset; member
Dtime_zone_info.cc338 if (!GetTransitionType(posix.std_offset, false, posix.std_abbr, &std_ti)) in ExtendTransitions()
373 dst.unix_time = jan1_time + dst_trans_off - posix.std_offset; in ExtendTransitions()
/external/openscreen/third_party/abseil/src/absl/time/internal/cctz/src/
Dtime_zone_posix.cc141 p = ParseOffset(p, 0, 24, -1, &res->std_offset); in ParsePosixSpec()
147 res->dst_offset = res->std_offset + (60 * 60); // default in ParsePosixSpec()
Dtime_zone_posix.h113 std::int_fast32_t std_offset; member
Dtime_zone_info.cc338 if (!GetTransitionType(posix.std_offset, false, posix.std_abbr, &std_ti)) in ExtendTransitions()
373 dst.unix_time = jan1_time + dst_trans_off - posix.std_offset; in ExtendTransitions()
/external/webrtc/third_party/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_posix.cc141 p = ParseOffset(p, 0, 24, -1, &res->std_offset); in ParsePosixSpec()
147 res->dst_offset = res->std_offset + (60 * 60); // default in ParsePosixSpec()
Dtime_zone_posix.h113 std::int_fast32_t std_offset; member
Dtime_zone_info.cc310 CheckTransition(name, tt, posix.std_offset, false, posix.std_abbr); in ExtendTransitions()
356 CheckTransition(name, std, posix.std_offset, false, posix.std_abbr); in ExtendTransitions()
/external/libtextclassifier/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_posix.cc141 p = ParseOffset(p, 0, 24, -1, &res->std_offset); in ParsePosixSpec()
147 res->dst_offset = res->std_offset + (60 * 60); // default in ParsePosixSpec()
Dtime_zone_posix.h113 std::int_fast32_t std_offset; member
Dtime_zone_info.cc338 if (!GetTransitionType(posix.std_offset, false, posix.std_abbr, &std_ti)) in ExtendTransitions()
373 dst.unix_time = jan1_time + dst_trans_off - posix.std_offset; in ExtendTransitions()
/external/python/cpython3/Modules/
D_zoneinfo.c144 build_tzrule(PyObject *std_abbr, PyObject *dst_abbr, long std_offset,
1464 long std_offset = 1 << 20; in parse_tz_str() local
1483 num_chars = parse_tz_delta(p, &std_offset); in parse_tz_str()
1508 dst_offset = std_offset + 3600; in parse_tz_str()
1549 build_tzrule(std_abbr, dst_abbr, std_offset, dst_offset, start, end, out); in parse_tz_str()
1907 build_tzrule(PyObject *std_abbr, PyObject *dst_abbr, long std_offset, in build_tzrule() argument
1916 if (build_ttinfo(std_offset, 0, std_abbr, &rv.std)) { in build_tzrule()
1921 rv.dst_diff = dst_offset - std_offset; in build_tzrule()
/external/python/dateutil/dateutil/test/
Dtest_tz.py1289 std_offset = timedelta(hours=-5)
1297 self.assertEqual(dt_std.utcoffset(), std_offset)