/external/python/dateutil/dateutil/tz/ |
_common.py | 289 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...] |
tz.py | 317 __slots__ = ["offset", "delta", "isdst", "abbr", 338 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 [all...] |
/external/python/cpython3/Lib/test/test_email/ |
test_utils.py | 67 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/icu/icu4c/source/common/ |
rbbicst.pl | 232 my ($sec, $min, $hour, , $day, $mon, $year, $wday, $yday, $isdst) = localtime;
|
/external/python/cpython3/Lib/email/ |
utils.py | 339 def localtime(dt=None, isdst=-1): 346 In this case, a positive or zero value for *isdst* causes localtime to 349 negative value for *isdst* causes the localtime() function to attempt 358 # system mktime together with the isdst hint. System mktime will return 360 tm = dt.timetuple()[:-1] + (isdst,)
|
/bionic/libc/tzcode/ |
localtime.c | 206 /* Initialize *S to a value based on GMTOFF, ISDST, and ABBRIND. */ 208 init_ttinfo(struct ttinfo *s, int_fast32_t gmtoff, bool isdst, int abbrind) 211 s->tt_isdst = isdst; 503 unsigned char isdst, abbrind; local 508 isdst = *p++; 509 if (! (isdst < 2)) 511 ttisp->tt_isdst = isdst; 1150 register bool isdst; local 1180 isdst = false; 1206 if (isdst && !sp->ttis[j].tt_ttisstd) [all...] |
/external/icu/icu4c/source/tools/tzcode/ |
zic.c | 144 char *const abbr, int isdst, 147 static int addtype(zic_t gmtoff, const char * abbr, int isdst, [all...] |
tz2icu.cpp | 143 bool isdst; member in struct:ZoneType 400 // Read types (except for the isdst and isgmt flags, which come later (why??)) 406 type.isdst = readbool(file); 412 if (type.isdst != (type.dstoffset != 0)) { 413 throw invalid_argument("isdst does not reflect dstoffset"); [all...] |
localtime.c | 1059 register int isdst; local 1089 isdst = FALSE; 1115 if (isdst && !sp->ttis[j].tt_ttisstd) { [all...] |
/external/curl/tests/ |
ftpserver.pl | 205 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = 211 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = [all...] |
runtests.pl | 604 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = [all...] |
/external/python/cpython3/Lib/test/ |
datetimetester.py | [all...] |