Searched refs:altzone (Results 1 – 25 of 28) sorted by relevance
12
/external/python/cpython2/Lib/test/ |
D | test_time.py | 19 time.altzone 245 self.assertEqual(time.altzone, 14400) 263 self.assertEqual(time.altzone, -39600)
|
D | test_ssl.py | 121 return -time.altzone # seconds
|
/external/python/cpython2/Doc/includes/ |
D | tzinfo-examples.py | 48 DSTOFFSET = timedelta(seconds = -_time.altzone)
|
/external/python/cpython3/Lib/test/ |
D | test_time.py | 56 time.altzone 363 self.assertEqual(time.altzone, 14400) 383 self.assertEqual(time.altzone, -39600) 702 self.assertEqual(lt.tm_gmtoff, -[time.timezone, time.altzone][lt.tm_isdst])
|
D | test_ssl.py | 180 return -time.altzone # seconds
|
/external/python/cpython3/Doc/includes/ |
D | tzinfo_examples.py | 15 DSTOFFSET = timedelta(seconds = -_time.altzone)
|
/external/python/cpython2/Lib/email/ |
D | utils.py | 149 offset = time.altzone
|
/external/python/cpython3/Lib/email/ |
D | utils.py | 371 gmtoff = -(time.altzone if dst else time.timezone)
|
/external/python/cpython2/Lib/ |
D | imaplib.py | 1371 zone = zone + time.altzone 1428 zone = -time.altzone
|
/external/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()
|
/external/python/cpython2/Modules/ |
D | timemodule.c | 814 PyModule_AddIntConstant(m, "altzone", altzone); in inittimezone()
|
/external/python/cpython3/Doc/library/ |
D | time.rst | 643 seconds West of UTC), ``altzone`` (DST seconds west of UTC) and ``daylight`` 836 .. data:: altzone 859 For the above Timezone constants (:data:`altzone`, :data:`daylight`, :data:`timezone`,
|
/external/python/cpython2/Doc/library/ |
D | time.rst | 120 .. data:: altzone 470 seconds West of UTC), ``altzone`` (DST seconds west of UTC) and ``daylight``
|
/external/python/cpython3/Modules/ |
D | timemodule.c | 1569 PyModule_AddIntConstant(m, "altzone", altzone); in init_timezone()
|
/external/python/cpython3/Lib/ |
D | imaplib.py | 1492 gmtoff = -(time.timezone, time.altzone)[dst]
|
/external/python/dateutil/dateutil/tz/ |
D | tz.py | 198 self._dst_offset = datetime.timedelta(seconds=-time.altzone)
|
/external/python/cpython2/ |
D | pyconfig.h.in | 61 /* Define this if your time.h defines altzone. */
|
D | configure.ac | 3580 AC_MSG_CHECKING(for time.h that defines altzone) 3582 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <time.h>]], [[return altzone;]])], 3588 AC_DEFINE(HAVE_ALTZONE, 1, [Define this if your time.h defines altzone.])
|
D | configure | 12223 return altzone;
|
/external/python/cpython2/Lib/email/test/ |
D | test_email_renamed.py | 1086 tzsecs = time.altzone
|
D | test_email.py | 1151 tzsecs = time.altzone
|
/external/python/cpython3/ |
D | configure.ac | 4084 AC_MSG_CHECKING(for time.h that defines altzone) 4086 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <time.h>]], [[return altzone;]])], 4092 AC_DEFINE(HAVE_ALTZONE, 1, [Define this if your time.h defines altzone.])
|
D | pyconfig.h.in | 61 /* Define this if your time.h defines altzone. */
|
/external/python/cpython3/Lib/test/test_email/ |
D | test_email.py | 1727 tzsecs = time.altzone
|
/external/python/cpython2/Misc/ |
D | cheatsheet | 1547 altzone signed offset of local DST timezone in sec west of the 0th meridian.
|
12