Home
last modified time | relevance | path

Searched refs:extractall (Results 1 – 21 of 21) sorted by relevance

/third_party/boost/libs/unordered/ci/
Ddownload-boost-snapshot.py48 tar.extractall(path)
52 tar.extractall(path)
56 zip.extractall(path)
/third_party/python/Tools/peg_generator/scripts/
Dtest_pypi_packages.py42 tarfile.open(filename).extractall(savedir)
44 zipfile.ZipFile(filename).extractall(savedir)
/third_party/node/tools/configure.d/
Dnodedownload.py76 icuzip.extractall(parent_path)
81 icuzip.extractall(parent_path)
/third_party/jsoncpp/devtools/
Dtarball.py52 tar.extractall(base_dir)
/third_party/python/PCbuild/
Dget_external.py29 zf.extractall(os.fspath(externals_dir))
/third_party/python/Tools/i18n/
Dpygettext.py539 extractall = 0 # FIXME: currently this option has no effect at all. variable in main.Options
562 options.extractall = 1
/third_party/python/Doc/library/
Dtarfile.rst390 .. method:: TarFile.extractall(path=".", members=None, *, numeric_owner=False)
433 In most cases you should consider using the :meth:`extractall` method.
437 See the warning for :meth:`extractall`.
757 tar.extractall()
760 How to extract a subset of a tar archive with :meth:`TarFile.extractall` using
772 tar.extractall(members=py_files(tar))
Dzipfile.rst328 .. method:: ZipFile.extractall(path=None, members=None, pwd=None)
344 Calling :meth:`extractall` on a closed ZipFile will raise a
/third_party/vk-gl-cts/external/
Dfetch_sources.py155 archive.extractall(tmpPath)
/third_party/python/Lib/test/
Dtest_zipfile.py1388 zipfp.extractall()
1400 zipfp.extractall(target)
1502 zipfp.extractall(targetpath)
1516 zipfp.extractall()
2561 zipf.extractall(TESTFN2)
2593 zipf.extractall(target)
2610 zipf.extractall(target)
Dtest_tarfile.py610 tar.extractall(DIR, directories)
652 tar.extractall(DIR, directories)
1370 tar.extractall(path=tempdir)
2737 tarfl.extractall(TEMPDIR, numeric_owner=True)
/third_party/python/Tools/ssl/
Dmultissltests.py290 tf.extractall(self.build_dir, members)
/third_party/python/Misc/NEWS.d/
D3.5.0a4.rst157 tarfile.TarFile.extractall. Patch by Michael Vogt and Eric Smith.
/third_party/python/Lib/
Dtarfile.py2020 def extractall(self, path=".", members=None, *, numeric_owner=False): member in TarFile
2557 tf.extractall(path=curdir)
Dzipfile.py1619 def extractall(self, path=None, members=None, pwd=None): member in ZipFile
2435 zf.extractall(curdir)
Dshutil.py1196 tarobj.extractall(extract_dir)
/third_party/cef/tools/automate/
Dautomate-git.py208 zf.extractall(target)
/third_party/python/Doc/whatsnew/
D3.5.rst1893 The :meth:`TarFile.extractall() <tarfile.TarFile.extractall>` and
D2.6.rst2640 :meth:`extract` and :meth:`extractall` methods that will unpack
2651 z.extractall()
D2.5.rst1586 :meth:`extractall` method that extracts all members from the archive into the
/third_party/python/Misc/
DHISTORY19210 - Patch #1043890: Add extractall method to tarfile.