Searched refs:move_file (Results 1 – 5 of 5) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/ |
D | test_file_util.py | 6 from distutils.file_util import move_file, write_file, copy_file 40 move_file(self.source, self.target, verbose=0) 45 move_file(self.target, self.source, verbose=0) 47 move_file(self.source, self.target, verbose=1) 52 move_file(self.target, self.source, verbose=0) 57 move_file(self.source, self.target_dir, verbose=1)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/ |
D | cmd.py | 379 def move_file (self, src, dst, level=1): member in Command 381 return file_util.move_file(src, dst, dry_run = self.dry_run)
|
D | file_util.py | 162 def move_file (src, dst, verbose=1, dry_run=0): function
|
D | ccompiler.py | 15 from distutils.file_util import move_file 927 def move_file(self, src, dst): member in CCompiler 928 return move_file(src, dst, dry_run=self.dry_run)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/ |
D | bdist_rpm.py | 385 self.move_file(srpm, self.dist_dir) 391 self.move_file(rpm, self.dist_dir)
|