Home
last modified time | relevance | path

Searched refs:tzfile (Results 1 – 11 of 11) sorted by relevance

/external/icu/icu4c/source/tools/tzcode/
DMakefile.in96 mv $(TZORIG)/$$tzfile $(TZORIG)/$$tzfile.bak && \
97 awk -v DATAFORM=rearguard -f $(TZORIG)/ziguard.awk $(TZORIG)/$$tzfile.bak > $(TZORIG)/$$tzfile; \
148 mv $$tzfile $(VANGUARD_DIR)/$$tzfile && \
149 awk -v DATAFORM=rearguard -f ziguard.awk $(VANGUARD_DIR)/$$tzfile > $$tzfile; \
/external/python/dateutil/dateutil/zoneinfo/
D__init__.py9 from dateutil.tz import tzfile as _tzfile
17 class tzfile(_tzfile): class
34 self.zones = {zf.name: tzfile(tf.extractfile(zf), filename=zf.name)
/external/python/dateutil/
Dupdatezinfo.py43 with open(metadata['tzdata_file'], 'rb') as tzfile:
45 sha_hasher.update(tzfile.read())
DNEWS162 - Style improvement to zoneinfo.tzfile that was confusing to static type
236 in tz.tzfile objects. Reported by @abalkin (gh issue #128, pr #225)
247 - Fixed an issue where tzfile objects were not properly handling dst() and
314 - tzfile now correctly handles files containing leapcnt (although the leapcnt
572 - Now tzfile will round timezones to full-minutes if necessary,
DREADME.rst53 * Timezone (tzinfo) implementations for tzfile(5) format
/external/python/dateutil/docs/
Dexamples.rst1367 tzfile examples
1370 .. testsetup:: tzfile
1373 from dateutil.tz import tzfile, tzutc
1375 .. doctest:: tzfile
1378 >>> tz = tzfile("/etc/localtime")
1381 tzinfo=tzfile('/etc/localtime'))
1395 .. doctest:: tzfile
1397 >>> tz = tzfile('/usr/share/zoneinfo/EST5EDT')
1418 .. doctest:: tzfile
1440 .. doctest:: tzfile
/external/python/dateutil/dateutil/tz/
Dtz.py374 class tzfile(_tzinfo): class
397 super(tzfile, self).__init__()
787 if not isinstance(other, tzfile):
1451 tz = tzfile(filepath)
1462 tz = tzfile(name)
1473 tz = tzfile(filepath)
/external/python/dateutil/dateutil/test/
Dtest_tz.py1825 tzc = tz.tzfile(BytesIO(base64.b64decode(TZFILE_EST5EDT)))
1830 tzc = tz.tzfile(BytesIO(base64.b64decode(TZFILE_EST5EDT)))
1838 tzc = tz.tzfile(BytesIO(base64.b64decode(TZFILE_EST5EDT)))
1852 tz.tzfile(BytesIO(b'BadFile'))
1856 tzc = tz.tzfile(BytesIO(base64.b64decode(EUROPE_HELSINKI)))
1871 tz.tzfile(fileobj)
1880 tzc = tz.tzfile(BytesIO(base64.b64decode(NEW_YORK)))
2202 tzc = tz.tzfile(BytesIO(base64.b64decode(TZFILE_EST5EDT)))
2206 tzc = tz.tzfile(BytesIO(base64.b64decode(EUROPE_HELSINKI)))
2210 tzc = tz.tzfile(BytesIO(base64.b64decode(NEW_YORK)))
Dtest_imports.py110 from dateutil.tz import tzfile
/external/python/cpython2/Doc/library/
Dtime.rst538 convenient to use the system's zoneinfo (:manpage:`tzfile(5)`) database to
/external/python/cpython3/Doc/library/
Dtime.rst709 convenient to use the system's zoneinfo (:manpage:`tzfile(5)`) database to