Home
last modified time | relevance | path

Searched refs:outpath (Results 1 – 16 of 16) sorted by relevance

/external/rust/crates/zip/examples/
Dextract.rs21 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()
Dfile_info.rs22 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.c36 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/
Dgradients.py11 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/
Dapmtest.m66 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/
DInstallWindump.ps112 param([string]$zipfile, [string]$outpath) in Unzip()
14 [System.IO.Compression.ZipFile]::ExtractToDirectory($zipfile, $outpath) in Unzip()
/external/fonttools/Tests/ttx/
Dttx_test.py935 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/
Dtracers.c126 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/
Dzip64_large.rs198 let outpath = file.enclosed_name().unwrap(); in zip64_large() localVariable
202 outpath.display(), in zip64_large()
/external/capstone/bindings/python/
Dsetup.py104 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/
Dapplesingle.py107 def decode(infile, outpath, resonly=False, verbose=False): argument
132 asfile.tofile(outpath, resonly=resonly)
/external/python/cpython3/Tools/i18n/
Dpygettext.py489 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/
Dpygettext.py522 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/
Dread.rs361 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/
Dmain.py997 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/
DDarwinLdDriver.cpp448 if (llvm::opt::Arg *outpath = parsedArgs.getLastArg(OPT_output)) in parse() local
449 ctx.setOutputPath(outpath->getValue()); in parse()