Home
last modified time | relevance | path

Searched refs:isdst (Results 1 – 14 of 14) sorted by relevance

/external/python/dateutil/dateutil/tz/
D_common.py289 isdst = self._isdst(dt)
291 if isdst is None:
293 elif isdst:
299 isdst = self._isdst(dt)
301 if isdst is None:
303 elif isdst:
337 isdst = self._naive_isdst(dt_utc, utc_transitions)
339 if isdst:
344 _fold = int(not isdst and self.is_ambiguous(dt_wall))
383 isdst = self._naive_isdst(dt, transitions)
[all …]
Dtz.py338 self.isdst == other.isdst and
552 gmtoff, isdst, abbrind = ttinfo[i]
561 tti.isdst = isdst
583 if not out.ttinfo_std and not tti.isdst:
585 elif not out.ttinfo_dst and tti.isdst:
595 if not tti.isdst:
611 if not tti.isdst:
629 if tti.isdst:
773 if not tti.isdst:
1089 def __init__(self, tzoffsetfrom, tzoffsetto, isdst, argument
[all …]
/external/python/cpython3/Lib/test/test_email/
Dtest_utils.py67 t1 = utils.localtime(t0, isdst=-1)
74 t1 = utils.localtime(t0, isdst=-1)
82 t1 = utils.localtime(t0, isdst=1)
90 t1 = utils.localtime(t0, isdst=1)
/external/python/cpython3/Lib/email/
Dutils.py339 def localtime(dt=None, isdst=-1): argument
360 tm = dt.timetuple()[:-1] + (isdst,)
/external/icu/icu4c/source/tools/tzcode/
Dzic.c144 char *const abbr, int isdst,
147 static int addtype(zic_t gmtoff, const char * abbr, int isdst,
1947 const int isdst, const int doquotes) in doabbr() argument
1958 } else if (isdst) { in doabbr()
2707 …type(const zic_t gmtoff, const zic_t rawoff, const zic_t dstoff, char *const abbr, const int isdst, in addtype() argument
2710 addtype(const zic_t gmtoff, const char *const abbr, const int isdst, in addtype()
2716 if (isdst != TRUE && isdst != FALSE) { in addtype()
2729 if (isdst != (dstoff != 0)) { in addtype()
2743 if (gmtoff == gmtoffs[i] && isdst == isdsts[i] && in addtype()
2769 isdsts[i] = isdst; in addtype()
Dtz2icu.cpp143 bool isdst; member
406 type.isdst = readbool(file); in readzoneinfo()
412 if (type.isdst != (type.dstoffset != 0)) { in readzoneinfo()
1224 abbr(-1), isdst(false), isstd(false), isgmt(false) {} in ZoneType()
Dlocaltime.c1059 register int isdst; in tzparse() local
1089 isdst = FALSE; in tzparse()
1115 if (isdst && !sp->ttis[j].tt_ttisstd) { in tzparse()
/external/icu/icu4c/source/common/
Drbbicst.pl232 my ($sec, $min, $hour, , $day, $mon, $year, $wday, $yday, $isdst) = localtime;
/external/python/cpython3/Doc/library/
Demail.utils.rst21 case, a positive or zero value for *isdst* causes ``localtime`` to presume
24 *isdst* causes the ``localtime`` to attempt to divine whether summer time
/external/curl/tests/
Dftpserver.pl205 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =
211 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =
Druntests.pl604 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =
/external/cldr/tools/java/org/unicode/cldr/util/data/
Dafrica244 # > 23:59:59 2009 EET isdst=0 gmtoff=7200
247 # > 01:00:00 2009 EEST isdst=1 gmtoff=10800
250 # > 23:59:59 2009 EEST isdst=1 gmtoff=10800
253 # > 23:00:00 2009 EET isdst=0 gmtoff=7200
/external/python/cpython3/Lib/test/
Ddatetimetester.py5381 for i, (gmtoff, isdst, abbrind) in enumerate(ttis):
5383 ttis[i] = (timedelta(0, gmtoff), isdst, abbr)
5445 isdst = self._find_ti(dt, 1)
5450 return ZERO if isdst else HOUR
/external/python/cpython2/Misc/NEWS.d/
D2.7a1.rst5323 Allow time.strftime() to accept a tuple with a isdst field outside of the