/third_party/tzdata/ |
D | private.h | 495 # undef altzone 496 # define altzone tz_altzone macro 543 extern long altzone;
|
D | localtime.c | 208 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()
|
D | strftime.c | 555 diff = -altzone; in _fmt()
|
D | NEWS | 1924 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/ |
D | time_zone_libc.cc | 32 extern long altzone; 57 return is_dst ? altzone : timezone;
|
/third_party/python/Doc/includes/ |
D | tzinfo_examples.py | 15 DSTOFFSET = timedelta(seconds = -_time.altzone)
|
/third_party/python/Lib/test/ |
D | test_time.py | 56 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])
|
D | test_ssl.py | 267 return -time.altzone # seconds
|
/third_party/python/Lib/email/ |
D | utils.py | 363 gmtoff = -(time.altzone if dst else time.timezone)
|
/third_party/abseil-cpp/absl/time/internal/cctz/src/ |
D | time_zone_libc.cc | 51 return is_dst ? altzone : timezone;
|
/third_party/skia/third_party/externals/icu/source/tools/tzcode/ |
D | localtime.c | 224 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/ |
D | localtime.c | 224 long altzone = 0; variable 263 altzone = 0; in settzname() 292 altzone = -(ttisp->tt_gmtoff); in settzname()
|
/third_party/icu/icu4c/source/tools/tzcode/ |
D | localtime.c | 224 long altzone = 0; variable 263 altzone = 0; in settzname() 292 altzone = -(ttisp->tt_gmtoff); in settzname()
|
/third_party/python/Doc/library/ |
D | time.rst | 623 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/ |
D | imaplib.py | 1528 gmtoff = -(time.timezone, time.altzone)[dst]
|
/third_party/python/Modules/ |
D | timemodule.c | 1685 PyModule_AddIntConstant(m, "altzone", altzone);
|
/third_party/python/ |
D | pyconfig.h.in | 69 /* Define this if your time.h defines altzone. */
|
D | configure.ac | 4224 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.])
|
D | configure | 13764 return altzone;
|
/third_party/python/Lib/test/test_email/ |
D | test_email.py | 1771 tzsecs = time.altzone
|
/third_party/python/Misc/ |
D | HISTORY | 18050 - 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
|