Searched refs:dstoffset (Results 1 – 8 of 8) sorted by relevance
/external/python/dateutil/dateutil/tz/ |
D | tz.py | 342 self.dstoffset == other.dstoffset) 559 tti.dstoffset = datetime.timedelta(0) 617 tti.dstoffset = tti.offset - laststdoffset 630 if not (tti.dstoffset or laststdoffset is None): 631 tti.dstoffset = tti.offset - laststdoffset 635 if not isinstance(tti.dstoffset, datetime.timedelta): 636 tti.dstoffset = datetime.timedelta(seconds=tti.dstoffset) 778 return tti.dstoffset 883 dstabbr=None, dstoffset=None, argument 898 dstoffset = dstoffset.total_seconds() [all …]
|
D | win.py | 208 dstoffset = stdoffset-tup[2] # + DaylightBias * -1 210 self._dst_offset = datetime.timedelta(minutes=dstoffset) 255 dstoffset = stdoffset-keydict["DaylightBias"] 258 self._dst_offset = datetime.timedelta(minutes=dstoffset)
|
/external/icu/icu4c/source/tools/tzcode/ |
D | tz2icu.cpp | 138 int64_t dstoffset; // dst seconds offset from GMT member 149 ZoneType() : rawoffset(-1), dstoffset(-1), abbr(-1) {} in ZoneType() 154 dstoffset == other.dstoffset; in matches() 405 type.dstoffset = readcoded(file); in readzoneinfo() 412 if (type.isdst != (type.dstoffset != 0)) { in readzoneinfo() 428 if (info.types.at(0).dstoffset != 0) { in readzoneinfo() 435 && info.types.at(i).dstoffset == 0) { in readzoneinfo() 1095 os << typ->rawoffset << ", " << typ->dstoffset; in print() 1204 int64_t dstoffset; member 1205 SimplifiedZoneType() : rawoffset(-1), dstoffset(-1) {} in SimplifiedZoneType() [all …]
|
D | localtime.c | 930 int_fast32_t dstoffset; in tzparse() local 979 name = getoffset(name, &dstoffset); in tzparse() 982 } else dstoffset = stdoffset - SECSPERHOUR; in tzparse() 1007 sp->ttis[0].tt_gmtoff = -dstoffset; in tzparse() 1020 endtime = transtime(year, &end, dstoffset); in tzparse() 1034 + (stdoffset - dstoffset))))) { in tzparse() 1116 sp->ats[i] += dstoffset - in tzparse() 1135 sp->ttis[1].tt_gmtoff = -dstoffset; in tzparse()
|
/external/libvpx/libvpx/vp8/encoder/ |
D | picklpf.c | 60 int srcoffset, dstoffset; in calc_partial_ssl_err() local 72 dstoffset = dest->y_stride * ((dest->y_height >> 5) * 16); in calc_partial_ssl_err() 75 dst += dstoffset; in calc_partial_ssl_err()
|
/external/python/cpython2/Lib/test/ |
D | test_datetime.py | 44 def __init__(self, offset, name, dstoffset=42): argument 47 if isinstance(dstoffset, int): 48 dstoffset = timedelta(minutes=dstoffset) 51 self.__dstoffset = dstoffset 62 def __init__(self, offset=None, name=None, dstoffset=None): argument 63 FixedOffset.__init__(self, offset, name, dstoffset)
|
/external/python/cpython3/Lib/test/ |
D | datetimetester.py | 111 def __init__(self, offset, name, dstoffset=42): argument 114 if isinstance(dstoffset, int): 115 dstoffset = timedelta(minutes=dstoffset) 118 self.__dstoffset = dstoffset 130 def __init__(self, offset=None, name=None, dstoffset=None): argument 131 FixedOffset.__init__(self, offset, name, dstoffset)
|
/external/python/dateutil/dateutil/parser/ |
D | _parser.py | 1441 res.dstoffset = (res.stdoffset + int(l[i]) * signal)
|