/third_party/python/Lib/distutils/tests/ |
H A D | test_file_util.py | 7 from distutils.file_util import move_file, copy_file namespace 44 move_file(self.source, self.target, verbose=0) 49 move_file(self.target, self.source, verbose=0) 51 move_file(self.source, self.target, verbose=1) 56 move_file(self.target, self.source, verbose=0) 61 move_file(self.source, self.target_dir, verbose=1) 71 move_file(self.source, self.target, verbose=0) 80 move_file(self.source, self.target, verbose=0)
|
/third_party/harfbuzz/ |
H A D | install.py | 33 def move_file(src_path, dst_path): function 78 move_file(args.source_dir, target_dir)
|
/third_party/libpng/ |
H A D | install.py | 33 def move_file(src_path, dst_path): function 85 move_file(args.source_dir, target_dir)
|
/third_party/libffi/ |
H A D | install.py | 42 def move_file(src_path, dst_path): function 72 move_file(args.source_dir, target_dir)
|
/third_party/freetype/ |
H A D | install.py | 33 def move_file(src_path, dst_path): function 96 move_file(args.source_dir, target_dir)
|
/third_party/cups/ |
H A D | install.py | 40 def move_file(src_path, dst_path): function 101 move_file(args.source_dir, target_dir)
|
/third_party/libjpeg-turbo/ |
H A D | install.py | 33 def move_file(src_path, dst_path): function 84 move_file(args.source_dir, target_dir)
|
/third_party/python/Lib/distutils/ |
H A D | cmd.py | 358 def move_file (self, src, dst, level=1): member in Command 360 return file_util.move_file(src, dst, dry_run=self.dry_run)
|
H A D | ccompiler.py | 9 from distutils.file_util import move_file namespace 912 def move_file(self, src, dst): member in CCompiler 913 return move_file(src, dst, dry_run=self.dry_run)
|
H A D | file_util.py | 166 def move_file (src, dst, function
|
/third_party/python/Lib/distutils/command/ |
H A D | bdist_rpm.py | 373 self.move_file(srpm, self.dist_dir) 382 self.move_file(rpm, self.dist_dir)
|
/third_party/ntfs-3g/ntfsprogs/ |
H A D | ntfsmove.c | 799 * move_file - 805 static s64 move_file(ntfs_volume *vol, ntfs_inode *ino, u64 loc, int flags) in move_file() function 898 count = move_file(vol, inode, opts.location, 0); in main()
|