/third_party/python/Lib/distutils/tests/ |
D | test_file_util.py | 7 from distutils.file_util import move_file, copy_file 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/selinux/secilc/docs/ |
D | cil_container_statements.md | 260 This example will instantiate the optional block `ext_gateway.move_file` into policy providing all … 265 (optional move_file 266 (typetransition process msg_filter.move_file.in_queue file msg_filter.move_file.in_file) 267 (allow process msg_filter.move_file.in_queue (dir (read getattr write search add_name))) 268 (allow process msg_filter.move_file.in_file (file (write create getattr))) 269 (allow msg_filter.move_file.in_file unconfined.object (filesystem (associate))) 270 (typetransition msg_filter.int_gateway.process msg_filter.move_file.out_queue file 271 msg_filter.move_file.out_file) 272 … (allow msg_filter.int_gateway.process msg_filter.move_file.out_queue (dir (read write search))) 273 … (allow msg_filter.int_gateway.process msg_filter.move_file.out_file (file (read getattr unlink)))
|
/third_party/cef/tools/ |
D | file_util.py | 66 move_file(name, name + '.' + time.strftime('%Y-%m-%d-%H-%M-%S')) 82 def move_file(src, dst, quiet=True): function
|
D | patch_updater.py | 13 from file_util import copy_file, move_file, read_file, remove_file 268 move_file(backup_path_abs, patch_path_abs)
|
/third_party/libffi/ |
D | generate-darwin-source-and-headers.py | 98 def move_file(src_dir, dst_dir, filename, file_suffix=None, prefix='', suffix=''): function 128 move_file(src_dir, dst_dir, filename, file_suffix=file_suffix, prefix=prefix, suffix=suffix)
|
/third_party/python/Lib/distutils/ |
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)
|
D | ccompiler.py | 9 from distutils.file_util import move_file 912 def move_file(self, src, dst): member in CCompiler 913 return move_file(src, dst, dry_run=self.dry_run)
|
D | file_util.py | 166 def move_file (src, dst, function
|
/third_party/python/Lib/distutils/command/ |
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/ |
D | ntfsmove.c | 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()
|
/third_party/boost/boost/winapi/ |
D | file_management.hpp | 524 BOOST_FORCEINLINE BOOL_ move_file(LPCSTR_ lpExistingFileName, LPCSTR_ lpNewFileName, DWORD_ dwFlags) in move_file() function 540 BOOST_FORCEINLINE BOOL_ move_file(LPCWSTR_ lpExistingFileName, LPCWSTR_ lpNewFileName, DWORD_ dwFla… in move_file() function
|
/third_party/boost/libs/log/src/ |
D | text_file_backend.cpp | 82 inline void move_file( 884 move_file(src_path, info.m_Path); 1499 move_file(prev_file_name, new_file_name); in rotate_file()
|
/third_party/python/Doc/distutils/ |
D | apiref.rst | 774 .. method:: CCompiler.move_file(src, dst) 776 Invokes :meth:`distutils.file_util.move_file`. Renames *src* to *dst*. 1076 .. function:: move_file(src, dst[, verbose, dry_run])
|
/third_party/python/Misc/NEWS.d/ |
D | 3.5.0a1.rst | 2508 Use e.args to unpack exceptions correctly in distutils.file_util.move_file.
|
/third_party/python/Misc/ |
D | HISTORY | 1482 distutils.file_util.move_file. Patch by Claudiu Popa.
|