Home
last modified time | relevance | path

Searched refs:mkpath (Results 1 – 25 of 57) sorted by relevance

123

/external/python/cpython2/Lib/distutils/tests/
Dtest_dir_util.py8 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)
105 mkpath(self.target, verbose=0)
/external/python/cpython3/Lib/distutils/tests/
Dtest_dir_util.py9 from distutils.dir_util import (mkpath, remove_tree, create_tree, copy_tree,
41 mkpath(self.target, verbose=0)
46 mkpath(self.target, verbose=1)
62 mkpath(self.target, 0o700)
65 mkpath(self.target2, 0o555)
83 mkpath(self.target, verbose=0)
90 mkpath(self.target, verbose=0)
103 mkpath(self.target, verbose=0)
/external/abi-dumper/
DMakefile.pl25 use File::Path qw(mkpath rmtree);
198 mkpath($EXE_PATH);
206 mkpath($MODULES_PATH);
232 mkpath($Inst);
236 mkpath(dirname($Inst));
Dabi-dumper.pl498 mkpath($Dir);
682 mkpath($ExtraInfo);
868 mkpath($ExtraPath);
931 mkpath($ExtraPath);
1085 mkpath($ExtraInfo);
1128 mkpath($ExtraInfo);
1142 mkpath($ExtraInfo);
1212 mkpath($ExtraInfo);
1242 mkpath($ExtraInfo);
1880 mkpath($ExtraInfo);
[all …]
/external/abi-compliance-checker/
DMakefile.pl28 use File::Path qw(mkpath rmtree);
202 mkpath($EXE_PATH);
214 mkpath($MODULES_PATH);
263 mkpath($Inst);
267 mkpath(dirname($Inst));
/external/fio/oslib/
Dlibmtd.c52 static char *mkpath(const char *path, const char *name) in mkpath() function
565 lib->sysfs_mtd = mkpath("/sys", SYSFS_MTD); in libmtd_open()
569 lib->mtd = mkpath(lib->sysfs_mtd, MTD_NAME_PATT); in libmtd_open()
573 lib->mtd_name = mkpath(lib->mtd, MTD_NAME); in libmtd_open()
585 lib->mtd_dev = mkpath(lib->mtd, MTD_DEV); in libmtd_open()
589 lib->mtd_type = mkpath(lib->mtd, MTD_TYPE); in libmtd_open()
593 lib->mtd_eb_size = mkpath(lib->mtd, MTD_EB_SIZE); in libmtd_open()
597 lib->mtd_size = mkpath(lib->mtd, MTD_SIZE); in libmtd_open()
601 lib->mtd_min_io_size = mkpath(lib->mtd, MTD_MIN_IO_SIZE); in libmtd_open()
605 lib->mtd_subpage_size = mkpath(lib->mtd, MTD_SUBPAGE_SIZE); in libmtd_open()
[all …]
/external/tensorflow/tensorflow/tools/pip_package/
Dsetup.py151 self.mkpath(extra_dir)
155 self.mkpath(install_dir)
163 self.mkpath(self.install_dir)
/external/python/cpython2/Lib/distutils/
Darchive_util.py14 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)
Ddir_util.py19 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)
Dunixccompiler.py109 self.mkpath(os.path.dirname(output_file))
134 self.mkpath(os.path.dirname(output_filename))
177 self.mkpath(os.path.dirname(output_filename))
Dcmd.py351 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)
Dbcppcompiler.py105 self.mkpath(os.path.dirname(obj))
294 self.mkpath (os.path.dirname (output_filename))
387 self.mkpath(os.path.dirname(output_file))
Dccompiler.py16 from distutils.dir_util import mkpath
362 self.mkpath(os.path.dirname(obj))
881 def mkpath(self, name, mode=0777): member in CCompiler
882 mkpath(name, mode, dry_run=self.dry_run)
/external/python/cpython3/Lib/distutils/
Darchive_util.py18 from distutils.dir_util import mkpath
87 mkpath(os.path.dirname(archive_name), dry_run=dry_run)
137 mkpath(os.path.dirname(zip_filename), dry_run=dry_run)
Ddir_util.py17 def mkpath(name, mode=0o777, verbose=1, dry_run=0): function
97 mkpath(dir, mode, verbose=verbose, dry_run=dry_run)
135 mkpath(dst, verbose=verbose)
Dunixccompiler.py105 self.mkpath(os.path.dirname(output_file))
130 self.mkpath(os.path.dirname(output_filename))
174 self.mkpath(os.path.dirname(output_filename))
Dcmd.py337 def mkpath(self, name, mode=0o777): member in Command
338 dir_util.mkpath(name, mode, dry_run=self.dry_run)
428 self.mkpath(self.install_dir)
Dbcppcompiler.py105 self.mkpath(os.path.dirname(obj))
294 self.mkpath (os.path.dirname (output_filename))
386 self.mkpath(os.path.dirname(output_file))
Dccompiler.py10 from distutils.dir_util import mkpath
348 self.mkpath(os.path.dirname(obj))
914 def mkpath (self, name, mode=0o777): member in CCompiler
915 mkpath(name, mode, dry_run=self.dry_run)
/external/python/cpython3/Lib/distutils/command/
Dinstall_data.py43 self.mkpath(self.install_dir)
61 self.mkpath(dir)
Dinstall_headers.py38 self.mkpath(self.install_dir)
/external/python/cpython2/Lib/distutils/command/
Dinstall_data.py45 self.mkpath(self.install_dir)
63 self.mkpath(dir)
Dinstall_headers.py40 self.mkpath(self.install_dir)
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
Dcore-extensions.rb219 def self.mkpath( path ) singletonMethod in String.Dir
223 test( ?d, parent ) or mkpath( parent )
/external/syslinux/gpxe/src/include/gpxe/efi/
Dimport.pl27 mkpath ( $outdir );

123