Searched refs:altzone (Results 1 – 20 of 20) sorted by relevance
/third_party/tzdata/ |
D | private.h | 504 # undef altzone 505 # define altzone tz_altzone macro 552 extern long altzone;
|
D | localtime.c | 210 long altzone; variable 291 altzone = - ttisp->tt_utoff; in update_tzname_etc() 309 altzone = 0; in settzname() 2409 # define altzone 0 macro 2428 int_fast32_t offset = EPOCH_LOCAL ? (daylight ? timezone : altzone) : 0; in time()
|
D | strftime.c | 557 diff = -altzone; in _fmt()
|
D | NEWS | 2270 and 'altzone' to be in common storage shared with other modules, 2630 similarly for ALTZONE, daylight saving time, and the altzone variable. 2632 designed to make timezone and altzone more compatible with tzname. 3390 The types of the global variables 'timezone' and 'altzone' (if present) 3392 by POSIX, and for 'altzone' by common practice, e.g., Solaris 11. 5483 * 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/Lib/test/ |
D | test_time.py | 57 time.altzone 363 self.assertEqual(time.altzone, 14400) 383 self.assertEqual(time.altzone, -39600) 693 self.assertEqual(lt.tm_gmtoff, -[time.timezone, time.altzone][lt.tm_isdst])
|
D | test_ssl.py | 273 return -time.altzone # seconds
|
/third_party/python/Doc/includes/ |
D | tzinfo_examples.py | 15 DSTOFFSET = timedelta(seconds = -_time.altzone)
|
/third_party/python/Lib/email/ |
D | utils.py | 366 gmtoff = -(time.altzone if dst else time.timezone)
|
/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/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/python/Doc/library/ |
D | time.rst | 652 seconds West of UTC), ``altzone`` (DST seconds west of UTC) and ``daylight`` 866 .. data:: altzone 889 For the above Timezone constants (:data:`altzone`, :data:`daylight`, :data:`timezone`,
|
/third_party/python/Lib/ |
D | imaplib.py | 1527 gmtoff = -(time.timezone, time.altzone)[dst]
|
/third_party/python/Modules/ |
D | timemodule.c | 1722 PyModule_AddIntConstant(m, "altzone", altzone);
|
/third_party/python/ |
D | pyconfig.h.in | 78 /* Define this if your time.h defines altzone. */
|
D | configure.ac | 4263 AC_MSG_CHECKING(for time.h that defines altzone) 4265 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <time.h>]], [[return altzone;]])], 4271 AC_DEFINE(HAVE_ALTZONE, 1, [Define this if your time.h defines altzone.])
|
D | configure | 14031 return altzone;
|
/third_party/python/Lib/test/test_email/ |
D | test_email.py | 1772 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
|