Searched refs:_ttinfo (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython3/Modules/ |
D | _zoneinfo.c | 23 } _ttinfo; typedef 26 _ttinfo std; 27 _ttinfo dst; 43 _ttinfo **trans_ttinfos; // References to the ttinfo for each transition 44 _ttinfo *ttinfo_before; 46 _ttinfo *_ttinfos; // Unique array of ttinfos for ease of deallocation 89 static _ttinfo NO_TTINFO = {NULL, NULL, NULL, 0}; 130 static _ttinfo * 132 static _ttinfo * 137 build_ttinfo(long utcoffset, long dstoffset, PyObject *tzname, _ttinfo *out); [all …]
|
/external/python/cpython3/Lib/zoneinfo/ |
D | _zoneinfo.py | 130 ) and not isinstance(self._tz_after, _ttinfo): 239 _ttinfo( 291 if len(_ttinfo_list) > 1 or not isinstance(self._tz_after, _ttinfo): 396 class _ttinfo: class 418 _NO_TTINFO = _ttinfo(None, None, None) 437 self.std = _ttinfo( 446 self.dst = _ttinfo(utcoff=dst_offset, dstoff=delta, tzname=dst_abbr) 693 return _ttinfo(
|
/external/python/dateutil/dateutil/tz/ |
D | tz.py | 322 class _ttinfo(object): class 339 if not isinstance(other, _ttinfo): 610 tti = _ttinfo()
|