Home
last modified time | relevance | path

Searched refs:altzone (Results 1 – 21 of 21) sorted by relevance

/third_party/tzdata/
Dprivate.h495 # undef altzone
496 # define altzone tz_altzone macro
543 extern long altzone;
Dlocaltime.c208 long altzone; variable
280 altzone = - ttisp->tt_utoff; in update_tzname_etc()
298 altzone = 0; in settzname()
2334 # define altzone 0 macro
2353 int_fast32_t offset = EPOCH_LOCAL ? (daylight ? timezone : altzone) : 0; in time()
Dstrftime.c555 diff = -altzone; in _fmt()
DNEWS1924 and 'altzone' to be in common storage shared with other modules,
2284 similarly for ALTZONE, daylight saving time, and the altzone variable.
2286 designed to make timezone and altzone more compatible with tzname.
3044 The types of the global variables 'timezone' and 'altzone' (if present)
3046 by POSIX, and for 'altzone' by common practice, e.g., Solaris 11.
5137 * SVIDulation (an "altzone" variable)
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_libc.cc32 extern long altzone;
57 return is_dst ? altzone : timezone;
/third_party/python/Doc/includes/
Dtzinfo_examples.py15 DSTOFFSET = timedelta(seconds = -_time.altzone)
/third_party/python/Lib/test/
Dtest_time.py56 time.altzone
361 self.assertEqual(time.altzone, 14400)
381 self.assertEqual(time.altzone, -39600)
691 self.assertEqual(lt.tm_gmtoff, -[time.timezone, time.altzone][lt.tm_isdst])
Dtest_ssl.py267 return -time.altzone # seconds
/third_party/python/Lib/email/
Dutils.py363 gmtoff = -(time.altzone if dst else time.timezone)
/third_party/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_libc.cc51 return is_dst ? altzone : timezone;
/third_party/skia/third_party/externals/icu/source/tools/tzcode/
Dlocaltime.c224 long altzone = 0; variable
263 altzone = 0; in settzname()
292 altzone = -(ttisp->tt_gmtoff); in settzname()
/third_party/flutter/skia/third_party/externals/icu/source/tools/tzcode/
Dlocaltime.c224 long altzone = 0; variable
263 altzone = 0; in settzname()
292 altzone = -(ttisp->tt_gmtoff); in settzname()
/third_party/icu/icu4c/source/tools/tzcode/
Dlocaltime.c224 long altzone = 0; variable
263 altzone = 0; in settzname()
292 altzone = -(ttisp->tt_gmtoff); in settzname()
/third_party/python/Doc/library/
Dtime.rst623 seconds West of UTC), ``altzone`` (DST seconds west of UTC) and ``daylight``
837 .. data:: altzone
860 For the above Timezone constants (:data:`altzone`, :data:`daylight`, :data:`timezone`,
/third_party/python/Lib/
Dimaplib.py1528 gmtoff = -(time.timezone, time.altzone)[dst]
/third_party/python/Modules/
Dtimemodule.c1685 PyModule_AddIntConstant(m, "altzone", altzone);
/third_party/python/
Dpyconfig.h.in69 /* Define this if your time.h defines altzone. */
Dconfigure.ac4224 AC_MSG_CHECKING(for time.h that defines altzone)
4226 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <time.h>]], [[return altzone;]])],
4232 AC_DEFINE(HAVE_ALTZONE, 1, [Define this if your time.h defines altzone.])
Dconfigure13764 return altzone;
/third_party/python/Lib/test/test_email/
Dtest_email.py1771 tzsecs = time.altzone
/third_party/python/Misc/
DHISTORY18050 - Patch #1490224: time.altzone is now set correctly on Cygwin.
27340 altzone in libc6; this would not be horrible, except that timezone
27343 timezone and altzone variables aren't set correctly during DST.
27345 Here's a patch relative to 1.5.2b2 that (a) makes timezone and altzone
33697 System V): timezone, altzone, daylight and tzname. (The corresponding