/external/python/cpython3/Lib/distutils/tests/ |
D | test_file_util.py | 7 from distutils.file_util import move_file, copy_file 42 move_file(self.source, self.target, verbose=0) 47 move_file(self.target, self.source, verbose=0) 49 move_file(self.source, self.target, verbose=1) 54 move_file(self.target, self.source, verbose=0) 59 move_file(self.source, self.target_dir, verbose=1) 69 move_file(self.source, self.target, verbose=0) 78 move_file(self.source, self.target, verbose=0)
|
/external/python/cpython2/Lib/distutils/tests/ |
D | test_file_util.py | 6 from distutils.file_util import move_file, write_file, copy_file 45 move_file(self.source, self.target, verbose=0) 50 move_file(self.target, self.source, verbose=0) 52 move_file(self.source, self.target, verbose=1) 57 move_file(self.target, self.source, verbose=0) 62 move_file(self.source, self.target_dir, verbose=1)
|
/external/selinux/secilc/docs/ |
D | cil_container_statements.md | 236 This example will instantiate the optional block `ext_gateway.move_file` into policy providing all … 240 (optional move_file 241 (typetransition process msg_filter.move_file.in_queue file msg_filter.move_file.in_file) 242 (allow process msg_filter.move_file.in_queue (dir (read getattr write search add_name))) 243 (allow process msg_filter.move_file.in_file (file (write create getattr))) 244 (allow msg_filter.move_file.in_file unconfined.object (filesystem (associate))) 245 (typetransition msg_filter.int_gateway.process msg_filter.move_file.out_queue file 246 msg_filter.move_file.out_file) 247 … (allow msg_filter.int_gateway.process msg_filter.move_file.out_queue (dir (read write search))) 248 … (allow msg_filter.int_gateway.process msg_filter.move_file.out_file (file (read getattr unlink)))
|
/external/libffi/ |
D | generate-darwin-source-and-headers.py | 100 def move_file(src_dir, dst_dir, filename, file_suffix=None, prefix='', suffix=''): function 127 move_file(src_dir, dst_dir, filename, file_suffix=file_suffix, prefix=prefix, suffix=suffix)
|
/external/python/cpython2/Modules/_ctypes/libffi/ |
D | generate-darwin-source-and-headers.py | 100 def move_file(src_dir, dst_dir, filename, file_suffix=None, prefix='', suffix=''): function 127 move_file(src_dir, dst_dir, filename, file_suffix=file_suffix, prefix=prefix, suffix=suffix)
|
/external/python/cpython3/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 911 def move_file(self, src, dst): member in CCompiler 912 return move_file(src, dst, dry_run=self.dry_run)
|
D | file_util.py | 166 def move_file (src, dst, function
|
/external/python/cpython2/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 | ccompiler.py | 15 from distutils.file_util import move_file 878 def move_file(self, src, dst): member in CCompiler 879 return move_file(src, dst, dry_run=self.dry_run)
|
D | file_util.py | 170 def move_file (src, dst, verbose=1, dry_run=0): function
|
/external/python/cpython3/Lib/distutils/command/ |
D | bdist_rpm.py | 377 self.move_file(srpm, self.dist_dir) 386 self.move_file(rpm, self.dist_dir)
|
/external/python/cpython2/Lib/distutils/command/ |
D | bdist_rpm.py | 391 self.move_file(srpm, self.dist_dir) 400 self.move_file(rpm, self.dist_dir)
|
/external/autotest/client/site_tests/platform_PrinterPpds/ |
D | platform_PrinterPpds.py | 460 self._archivers[doc_name].move_file(ppd_name, ".err%d" % i, 462 self._archivers[doc_name].move_file(ppd_name, ".out%d.gz" % i,
|
D | archiver.py | 153 def move_file(self, prefix, name, path_file, apply_gzip=False): member in Archiver
|
/external/squashfs-tools/squashfs-tools/ |
D | action.c | 1870 static void move_file(struct move_ent *move_ent) in move_file() function 1969 move_file(move_list); in do_move_actions()
|
/external/python/cpython2/Doc/distutils/ |
D | apiref.rst | 749 .. method:: CCompiler.move_file(src, dst) 751 Invokes :meth:`distutils.file_util.move_file`. Renames *src* to *dst*. 1055 .. function:: move_file(src, dst[, verbose, dry_run])
|
/external/python/cpython3/Doc/distutils/ |
D | apiref.rst | 759 .. method:: CCompiler.move_file(src, dst) 761 Invokes :meth:`distutils.file_util.move_file`. Renames *src* to *dst*. 1061 .. function:: move_file(src, dst[, verbose, dry_run])
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0a1.rst | 2508 Use e.args to unpack exceptions correctly in distutils.file_util.move_file.
|
/external/python/cpython3/Misc/ |
D | HISTORY | 1482 distutils.file_util.move_file. Patch by Claudiu Popa.
|