Searched refs:mkpath (Results 1 – 18 of 18) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/ |
D | test_dir_util.py | 8 from distutils.dir_util import (mkpath, remove_tree, create_tree, copy_tree, 39 mkpath(self.target, verbose=0) 44 mkpath(self.target, verbose=1) 60 mkpath(self.target, 0o700) 63 mkpath(self.target2, 0o555) 82 mkpath(self.target, verbose=0) 89 mkpath(self.target, verbose=0)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/ |
D | install_data.py | 45 self.mkpath(self.install_dir) 63 self.mkpath(dir)
|
D | install_headers.py | 40 self.mkpath(self.install_dir)
|
D | build_scripts.py | 60 self.mkpath(self.build_dir)
|
D | bdist_rpm.py | 281 self.mkpath(spec_dir) 286 self.mkpath(rpm_dir[d])
|
D | build_py.py | 139 self.mkpath(os.path.dirname(target)) 340 self.mkpath(dir)
|
D | bdist_wininst.py | 253 self.mkpath(self.dist_dir)
|
D | sdist.py | 400 self.mkpath(base_dir)
|
D | bdist_msi.py | 217 self.mkpath(self.dist_dir)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/ |
D | archive_util.py | 14 from distutils.dir_util import mkpath 81 mkpath(os.path.dirname(archive_name), dry_run=dry_run) 136 mkpath(os.path.dirname(zip_filename), dry_run=dry_run)
|
D | dir_util.py | 19 def mkpath(name, mode=0777, verbose=1, dry_run=0): function 101 mkpath(dir, mode, verbose=verbose, dry_run=dry_run) 139 mkpath(dst, verbose=verbose)
|
D | unixccompiler.py | 166 self.mkpath(os.path.dirname(output_file)) 190 self.mkpath(os.path.dirname(output_filename)) 233 self.mkpath(os.path.dirname(output_filename))
|
D | cmd.py | 351 def mkpath(self, name, mode=0777): member in Command 352 dir_util.mkpath(name, mode, dry_run=self.dry_run) 451 self.mkpath(self.install_dir)
|
D | bcppcompiler.py | 105 self.mkpath(os.path.dirname(obj)) 294 self.mkpath (os.path.dirname (output_filename)) 387 self.mkpath(os.path.dirname(output_file))
|
D | ccompiler.py | 16 from distutils.dir_util import mkpath 412 self.mkpath(os.path.dirname(obj)) 930 def mkpath(self, name, mode=0777): member in CCompiler 931 mkpath(name, mode, dry_run=self.dry_run)
|
D | msvccompiler.py | 532 self.mkpath (os.path.dirname (output_filename))
|
D | msvc9compiler.py | 658 self.mkpath(os.path.dirname(output_filename))
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_modulefinder.py | 209 distutils.dir_util.mkpath(dirname)
|