/third_party/lame/frontend/ |
D | lame_main.c | 98 init_files(lame_global_flags * gf, char const *inPath, char const *outPath) in init_files() argument 105 if (0 != strcmp("-", outPath) && 0 == strcmp(inPath, outPath)) { in init_files() 120 if ((outf = init_outfile(outPath, lame_get_decode_only(gf))) == NULL) { in init_files() 121 error_printf("Can't init outfile '%s'\n", outPath); in init_files() 170 lame_decoder_loop(lame_t gfp, FILE * outf, char *inPath, char *outPath) in lame_decoder_loop() argument 195 strcmp(outPath, "-") ? outPath : "<stdout>", in lame_decoder_loop() 196 strlen(outPath) > 45 ? "\n\t" : " "); in lame_decoder_loop() 252 if (!global_decoder.disable_wav_header && strcmp("-", outPath) in lame_decoder_loop() 262 lame_decoder(lame_t gfp, FILE * outf, char *inPath, char *outPath) in lame_decoder() argument 266 ret = lame_decoder_loop(gfp, outf, inPath, outPath); in lame_decoder() [all …]
|
D | parse.c | 1369 int generateOutPath(char const* inPath, char const* outDir, char const* s_ext, char* outPath) in generateOutPath() argument 1379 outPath[i++] = *outDir++; in generateOutPath() 1384 if (i > 0 && outPath[i-1] != SLASH) { in generateOutPath() 1385 outPath[i++] = SLASH; in generateOutPath() 1390 outPath[i] = 0; in generateOutPath() 1400 outPath[i++] = pa[j]; in generateOutPath() 1403 outPath[i++] = SLASH; in generateOutPath() 1408 outPath[i] = 0; in generateOutPath() 1419 outPath[i++] = na[j]; in generateOutPath() 1421 outPath[i] = 0; in generateOutPath() [all …]
|
D | mp3rtp.c | 135 char outPath[PATH_MAX + 1]; in lame_main() local 196 parse_args(gf, argc_mod, argv_mod, inPath, outPath, NULL, NULL); in lame_main() 201 if (0 == strcmp(outPath, "-")) { in lame_main() 205 if ((outf = lame_fopen(outPath, "wb+")) == NULL) { in lame_main() 207 error_printf("Could not create \"%s\".\n", outPath); in lame_main()
|
D | timestatus.c | 211 , char const* outPath in encoder_progress_begin() argument 224 outPath = o_file = utf8ToConsole8Bit(outPath); in encoder_progress_begin() 230 strlen(inPath) + strlen(outPath) < pw ? "" : "\n ", in encoder_progress_begin() 231 strcmp(outPath, "-") ? outPath : "<stdout>"); in encoder_progress_begin()
|
D | parse.h | 15 char *const outPath, char **nogap_inPath, int *num_nogap); 19 int generateOutPath(char const* inPath, char const* outDir, char const* s_ext, char* outPath);
|
D | mp3x.c | 35 char outPath[PATH_MAX + 1]; in lame_main() local 46 ret = parse_args(gf, argc, argv, inPath, outPath, NULL, NULL); in lame_main()
|
D | timestatus.h | 31 , char const* outPath );
|
D | get_audio.h | 57 FILE *init_outfile(char const *outPath, int decode);
|
D | get_audio.c | 529 init_outfile(char const *outPath, int decode) in init_outfile() argument 534 if (0 == strcmp(outPath, "-")) { in init_outfile() 539 outf = lame_fopen(outPath, "w+b"); in init_outfile() 543 char *p, *out_path = strdup(outPath); in init_outfile()
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/test/ |
D | test_db.js | 26 const outPath = tempy.directory(); constant 27 buildDb('test_data/db', 'this', outPath); 28 const indexFile = path.join(outPath, 'index.json');
|
/third_party/skia/tools/fonts/ |
D | create_test_font.cpp | 50 SkString outPath(SkOSPath::Join(".", "tools")); in font_header() local 51 outPath = SkOSPath::Join(outPath.c_str(), "fonts"); in font_header() 52 outPath = SkOSPath::Join(outPath.c_str(), "test_font_"); in font_header() 61 outPath.append(fam); in font_header() 62 outPath.append(".inc"); in font_header() 63 FILE* out = fopen(outPath.c_str(), "w"); in font_header()
|
/third_party/node/test/parallel/ |
D | test-snapshot-typescript.js | 45 const outPath = path.join(tmpdir.path, 'ts-example.js'); constant 50 outPath, 60 const result = fs.readFileSync(outPath, 'utf8');
|
/third_party/weex-loader/ |
D | uglify-source.js | 41 function uglifyCode(code, outPath) { argument 43 fs.writeFileSync(outPath, uglifyCode)
|
/third_party/parse5/packages/parse5/ |
D | uglify-source.js | 41 function uglifyCode(code, outPath) { argument 43 fs.writeFileSync(outPath, uglifyCode);
|
/third_party/typescript/src/services/ |
D | sourcemaps.ts | 79 const outPath = outFile(options); constant 81 const declarationPath = outPath ? 82 removeFileExtension(outPath) + Extension.Dts :
|
/third_party/skia/infra/bots/task_drivers/compile_wasm_gm_tests/ |
D | compile_wasm_gm_tests.go | 29 outPath = flag.String("out_path", "", "The directory to put the built wasm/js code.") 45 outAbsPath := td.MustGetAbsolutePathOfFlag(ctx, *outPath, "out_path")
|
/third_party/python/Mac/BuildScript/ |
D | build-installer.py | 1379 def patchFile(inPath, outPath): argument 1390 fp = open(outPath, 'w') 1394 def patchScript(inPath, outPath): argument 1399 fp = open(outPath, 'w') 1402 os.chmod(outPath, STAT_0o755)
|
/third_party/typescript/src/server/ |
D | project.ts | 1289 const outPath = outFile(this.compilerOptions); constant 1292 if (!outPath || !this.isValidGeneratedFileWatcher( 1293 removeFileExtension(outPath) + Extension.Dts, 1301 if (outPath) {
|
/third_party/skia/src/pdf/ |
D | SkPDFDevice.cpp | 207 SkPath* outPath) { in calculate_inverse_path() argument 209 return Op(SkPath::Rect(bounds), invPath, kIntersect_SkPathOp, outPath); in calculate_inverse_path()
|
/third_party/typescript/src/compiler/ |
D | emitter.ts | 57 const outPath = outFile(options); constant 59 if (outPath) { 60 buildInfoExtensionLess = removeFileExtension(outPath); 80 const outPath = outFile(options)!; constant 81 const jsFilePath = options.emitDeclarationOnly ? undefined : outPath; 83 … = (forceDtsPaths || getEmitDeclarations(options)) ? removeFileExtension(outPath) + Extension.Dts …
|
/third_party/typescript/lib/ |
D | tsc.js | 94819 var outPath = ts.outFile(options); 94821 if (outPath) { 94822 buildInfoExtensionLess = ts.removeFileExtension(outPath); 94842 var outPath = ts.outFile(options); 94843 var jsFilePath = options.emitDeclarationOnly ? undefined : outPath; 94845 …rceDtsPaths || ts.getEmitDeclarations(options)) ? ts.removeFileExtension(outPath) + ".d.ts" : unde…
|
D | typingsInstaller.js | 114918 var outPath = ts.outFile(options); 114920 if (outPath) { 114921 buildInfoExtensionLess = ts.removeFileExtension(outPath); 114942 var outPath = ts.outFile(options); 114943 var jsFilePath = options.emitDeclarationOnly ? undefined : outPath; 114945 …rceDtsPaths || ts.getEmitDeclarations(options)) ? ts.removeFileExtension(outPath) + ".d.ts" /* Ext…
|