/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
dir_util.py | 12 # cache for by mkpath() -- in addition to cheapening redundant calls, 19 def mkpath(name, mode=0777, verbose=1, dry_run=0): function 35 "mkpath: 'name' must be a string (got %r)" % (name,) 90 'dry_run' flags are as for 'mkpath()'. 101 mkpath(dir, mode, verbose=verbose, dry_run=dry_run) 109 created with 'mkpath()'. The end result of the copy is that every 139 mkpath(dst, verbose=verbose)
|
archive_util.py | 14 from distutils.dir_util import mkpath namespace 81 mkpath(os.path.dirname(archive_name), dry_run=dry_run) 136 mkpath(os.path.dirname(zip_filename), dry_run=dry_run)
|
cmd.py | 351 def mkpath(self, name, mode=0777): member in class:Command 352 dir_util.mkpath(name, mode, dry_run=self.dry_run) 451 self.mkpath(self.install_dir)
|
ccompiler.py | 16 from distutils.dir_util import mkpath namespace 362 self.mkpath(os.path.dirname(obj)) 880 def mkpath(self, name, mode=0777): member in class:CCompiler [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
dir_util.py | 12 # cache for by mkpath() -- in addition to cheapening redundant calls, 19 def mkpath(name, mode=0777, verbose=1, dry_run=0): function 35 "mkpath: 'name' must be a string (got %r)" % (name,) 90 'dry_run' flags are as for 'mkpath()'. 101 mkpath(dir, mode, verbose=verbose, dry_run=dry_run) 109 created with 'mkpath()'. The end result of the copy is that every 139 mkpath(dst, verbose=verbose)
|
archive_util.py | 14 from distutils.dir_util import mkpath namespace 81 mkpath(os.path.dirname(archive_name), dry_run=dry_run) 136 mkpath(os.path.dirname(zip_filename), dry_run=dry_run)
|
cmd.py | 351 def mkpath(self, name, mode=0777): member in class:Command 352 dir_util.mkpath(name, mode, dry_run=self.dry_run) 451 self.mkpath(self.install_dir)
|
ccompiler.py | 16 from distutils.dir_util import mkpath namespace 362 self.mkpath(os.path.dirname(obj)) 880 def mkpath(self, name, mode=0777): member in class:CCompiler [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/ |
core-extensions.rb | 219 def self.mkpath( path ) singleton method in class:Dir 220 $VERBOSE and $stderr.puts( "INFO: Dir.mkpath(%p)" % path ) 223 test( ?d, parent ) or mkpath( parent )
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
path.c | 9 * f = open(mkpath("%s/%s.perf", base, name), O_RDONLY); 88 char *mkpath(const char *fmt, ...) function
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_dir_util.py | 8 from distutils.dir_util import (mkpath, remove_tree, create_tree, copy_tree, namespace 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)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_dir_util.py | 8 from distutils.dir_util import (mkpath, remove_tree, create_tree, copy_tree, namespace 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/chromium_org/third_party/cython/src/Cython/Distutils/ |
build_ext.py | 18 from distutils.dir_util import mkpath namespace 301 self.mkpath(os.path.dirname(target))
|