/external/rust/crates/zip/examples/ |
D | extract.rs | 21 let outpath = match file.enclosed_name() { in real_main() localVariable 34 println!("File {} extracted to \"{}\"", i, outpath.display()); in real_main() 35 fs::create_dir_all(&outpath).unwrap(); in real_main() 40 outpath.display(), in real_main() 43 if let Some(p) = outpath.parent() { in real_main() 48 let mut outfile = fs::File::create(&outpath).unwrap(); in real_main() 58 fs::set_permissions(&outpath, fs::Permissions::from_mode(mode)).unwrap(); in real_main()
|
D | file_info.rs | 22 let outpath = match file.enclosed_name() { in real_main() localVariable 41 outpath.display() in real_main() 47 outpath.display(), in real_main()
|
/external/python/cpython3/Programs/ |
D | _freeze_importlib.c | 36 const char *name, *inpath, *outpath; in main() local 53 outpath = argv[3]; in main() 120 outfile = fopen(outpath, "w"); in main() 122 fprintf(stderr, "cannot open '%s' for writing\n", outpath); in main() 148 fprintf(stderr, "error when writing to '%s'\n", outpath); in main()
|
/external/skqp/tools/lua/ |
D | gradients.py | 11 def create_database(inpath, outpath): argument 12 with sqlite3.connect(outpath) as conn: 47 create_database(args.inpath, args.outpath);
|
/external/webrtc/modules/audio_processing/test/ |
D | apmtest.m | 66 outpath = [filepath 'output/']; variable 140 outpathtest = [outpath testdir]; 179 function [nErrOut, nCases] = recurseDir(inpath, outpath, refpath, ... 213 opt = [opt ' ' outpath vadoutfile]; 215 opt = [opt ' --vad_out_file ' outpath vadoutfile]; 252 command = [progname ' -o ' outpath outfile ' ' opt]; 267 command = [progname inputCmd ' -o ' outpath outfile ' ' opt]; 278 equal_to_ref = are_files_equal([outpath vadoutfile], ... 286 [equal_to_ref, diffvector] = are_files_equal([outpath outfile], ... 301 [outpath outfile], diffvector); [all …]
|
/external/scapy/.appveyor/ |
D | InstallWindump.ps1 | 12 param([string]$zipfile, [string]$outpath) in Unzip() 14 [System.IO.Compression.ZipFile]::ExtractToDirectory($zipfile, $outpath) in Unzip()
|
/external/fonttools/Tests/ttx/ |
D | ttx_test.py | 935 outpath = tmpdir.join("TestTTF.ttx") 936 args = ["-o", str(outpath), inpath] 938 assert outpath.check(file=True) 943 outpath = tmpdir.join("TestTTF.ttf") 944 args = ["-o", str(outpath), inpath] 946 assert outpath.check(file=True) 960 outpath = tmpdir.join("TestTTF.ttf") 961 args = ["-o", str(outpath), inpath] 977 outpath = tmpdir.join("TestTTF.ttf") 978 args = ["-o", str(outpath), inpath] [all …]
|
/external/blktrace/iowatcher/ |
D | tracers.c | 126 int run_program(int argc, char **argv, int wait, pid_t *pid, char *outpath) in run_program() argument 134 if (outpath != NULL) { in run_program() 136 posix_spawn_file_actions_addopen(&facts, 1, outpath, O_WRONLY|O_CREAT|O_TRUNC, 0600); in run_program()
|
/external/rust/crates/zip/tests/ |
D | zip64_large.rs | 198 let outpath = file.enclosed_name().unwrap(); in zip64_large() localVariable 202 outpath.display(), in zip64_large()
|
/external/capstone/bindings/python/ |
D | setup.py | 104 outpath = os.path.join(SRC_DIR, os.path.basename(filename)) 105 log.info("%s -> %s" % (filename, outpath)) 106 shutil.copy(filename, outpath)
|
/external/python/cpython2/Lib/plat-mac/ |
D | applesingle.py | 107 def decode(infile, outpath, resonly=False, verbose=False): argument 132 asfile.tofile(outpath, resonly=resonly)
|
/external/python/cpython3/Tools/i18n/ |
D | pygettext.py | 489 outpath = '' variable in main.Options 531 options.outpath = arg 614 if options.outpath: 615 options.outfile = os.path.join(options.outpath, options.outfile)
|
/external/python/cpython2/Tools/i18n/ |
D | pygettext.py | 522 outpath = '' variable in main.Options 564 options.outpath = arg 645 if options.outpath: 646 options.outfile = os.path.join(options.outpath, options.outfile)
|
/external/rust/crates/zip/src/ |
D | read.rs | 361 let outpath = directory.as_ref().join(filepath); in extract() localVariable 364 fs::create_dir_all(&outpath)?; in extract() 366 if let Some(p) = outpath.parent() { in extract() 371 let mut outfile = fs::File::create(&outpath)?; in extract() 379 fs::set_permissions(&outpath, fs::Permissions::from_mode(mode))?; in extract()
|
/external/llvm/utils/llvm-build/llvmbuild/ |
D | main.py | 997 outpath = os.path.join(opts.build_root, subpath) 998 result = configutil.configure_file(inpath, outpath, substitutions) 1000 note("configured file %r hasn't changed" % outpath)
|
/external/llvm-project/lld/lib/Driver/ |
D | DarwinLdDriver.cpp | 448 if (llvm::opt::Arg *outpath = parsedArgs.getLastArg(OPT_output)) in parse() local 449 ctx.setOutputPath(outpath->getValue()); in parse()
|