Searched defs:outFile (Results 1 - 25 of 57) sorted by relevance

123

/external/emma/core/java12/com/vladium/emma/rt/
H A DRTCoverageDataPersister.java38 final File outFile, final boolean merge)
54 DataFactory.persist (cdataView, outFile, merge);
61 log.info ("runtime coverage data " + (merge ? "merged into" : "written to") + " [" + outFile.getAbsolutePath () + "] {in " + (end - start) + " ms}");
37 dumpCoverageData(final ICoverageData cdata, final boolean useSnapshot, final File outFile, final boolean merge) argument
H A DRTExitHook.java105 RTExitHook (final Class RT, final ICoverageData cdata, final File outFile, final boolean merge) argument
110 m_outFile = outFile;
H A DRT.java144 * @param outFile
148 public static synchronized void dumpCoverageData (File outFile, final boolean merge, final boolean stopDataCollection) argument
151 outFile = outFile != null ? outFile : getCoverageOutFile ();
156 RTCoverageDataPersister.dumpCoverageData (cdata, ! stopDataCollection, outFile, merge);
159 public static synchronized void dumpCoverageData (File outFile, final boolean stopDataCollection) argument
161 outFile = outFile != null ? outFile
[all...]
/external/jacoco/org.jacoco.agent.rt/src/com/vladium/emma/rt/
H A DRT.java36 * @param outFile
47 public static void dumpCoverageData(final File outFile, argument
50 final OutputStream out = new FileOutputStream(outFile, merge);
62 * @param outFile
69 public static synchronized void dumpCoverageData(final File outFile, argument
71 dumpCoverageData(outFile, true, stopDataCollection);
/external/libpcap/msdos/
H A Dbin2c.c18 FILE *outFile = stdout; local
28 fprintf (outFile,
37 fputs ("\n ", outFile);
38 fprintf (outFile, "0x%02X,", ch);
40 fputc ('\n', outFile);
/external/webrtc/webrtc/modules/audio_coding/neteq/test/
H A DRTPtimeshift.cc35 FILE* outFile = fopen(argv[2], "wb"); local
36 if (!outFile) {
46 EXPECT_GT(fputs(firstline, outFile), 0);
50 fwrite(firstline, 1, kRtpDumpHeaderSize, outFile));
77 packet.writeToFile(outFile);
83 fclose(outFile);
/external/libopus/celt/
H A Dopus_custom_demo.c45 char *inFile, *outFile; local
95 outFile = argv[argc-1];
96 fout = fopen(outFile, "wb+");
/external/libopus/doc/
H A Dtrivial_example.c52 char *outFile; local
103 outFile = argv[2];
104 fout = fopen(outFile, "w");
/external/sonic/
H A Dmain.c19 waveFile outFile,
50 writeToWaveFile(outFile, outBuffer, samplesWritten);
75 waveFile inFile, outFile; local
129 outFile = openOutputWaveFile(outFileName, sampleRate, numChannels);
130 if(outFile == NULL) {
134 runSonic(inFile, outFile, speed, pitch, rate, volume, emulateChordPitch, quality,
137 closeWaveFile(outFile);
17 runSonic( waveFile inFile, waveFile outFile, float speed, float pitch, float rate, float volume, int emulateChordPitch, int quality, int sampleRate, int numChannels) argument
/external/emma/core/java12/com/vladium/emma/report/
H A DReportProperties.java65 public void setOutFile (final File outFile) argument
67 if ($assert.ENABLED) $assert.ASSERT (outFile != null, "null input: outFile");
69 m_outFile = outFile;
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DReportAPI.java89 String outFile = null;
99 outFile = args[++i];
107 new ReportAPI(oldFile, newFile, internal).writeReport(outFile, html, internal);
261 private boolean writeReport(String outFile, boolean html, boolean internal) { argument
263 if (outFile != null) {
265 os = new FileOutputStream(outFile);
/external/libgdx/extensions/gdx-setup/src/com/badlogic/gdx/setup/
H A DGdxSetup.java443 private void writeFile (File outFile, byte[] bytes) { argument
447 out = new BufferedOutputStream(new FileOutputStream(outFile));
450 throw new RuntimeException("Couldn't write file '" + outFile.getAbsolutePath() + "'", e);
459 private void writeFile (File outFile, String text) { argument
461 writeFile(outFile, text.getBytes("UTF-8"));
468 File outFile = new File(out, file.outputName);
469 if (!outFile.getParentFile().exists() && !outFile.getParentFile().mkdirs()) {
470 throw new RuntimeException("Couldn't create dir '" + outFile.getAbsolutePath() + "'");
483 writeFile(outFile, tx
[all...]
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/SwitchingSampRate/
H A DSwitchingSampRate.cc36 FILE* outFile[MAX_NUM_CLIENTS]; local
111 OPEN_FILE_WB(outFile[clientCntr], outFileName[clientCntr]);
439 outFile[receiverIdx]) !=
447 outFile[receiverIdx]) !=
/external/bzip2/
H A Dbzip2recover.c304 FILE* outFile; local
436 outFile = NULL;
446 if (outFile != NULL && bitsRead >= rbStart[wrBlock]
454 if (outFile != NULL) {
489 outFile = fopen ( outFileName, "wb" );
490 if (outFile == NULL) {
495 bsWr = bsOpenWriteStream ( outFile );
/external/emma/core/java12/com/vladium/emma/instr/
H A DInstrProcessorST.java181 File outFile = null;
190 outFile = new File (className.replace ('.', File.separatorChar).concat (".class"));
191 fullOutFile = getFullOutFile (null, outFile, IN_CLASSES);
199 // BUG_SF989071: using outFile here instead resulted in
212 if (log.atVERBOSE ()) log.verbose ("destination file [" + outFile + "] skipped: more recent than the source");
252 outFile = new File (className.replace ('.', File.separatorChar).concat (".class"));
253 fullOutFile = getFullOutFile (null, outFile, IN_CLASSES);
560 final File outFile = getFullOutFile (pathDir, file, IN_CLASSES);
562 addJob (new FileWriteJob (outFile, data, mkdir));
803 static void writeFile (final byte [] data, final File outFile, fina argument
886 FileWriteJob(final File outFile, final byte [] data, final boolean mkdirs) argument
[all...]
/external/lzma/C/Util/7z/
H A D7zMain.c475 CSzFile outFile; local
499 else if (OutFile_OpenUtf16(&outFile, destPath))
506 if (File_Write(&outFile, outBuffer + offset, &processedSize) != 0 || processedSize != outSizeProcessed)
512 if (File_Close(&outFile))
/external/lzma/C/Util/SfxSetup/
H A DSfxSetup.c416 CSzFile outFile; local
459 if (OutFile_OpenW(&outFile, path))
468 if (File_Write(&outFile, outBuffer + offset, &processedSize) != 0 || processedSize != outSizeProcessed)
481 SetFileTime(outFile.handle, NULL, NULL, &mTime);
486 SRes res2 = File_Close(&outFile);
/external/lzma/CPP/Windows/
H A DFileDir.cpp468 static bool CreateTempFile(CFSTR prefix, bool addRandom, FString &path, NIO::COutFile *outFile) argument
486 if (outFile)
495 if (outFile)
502 if (outFile)
504 if (outFile->Create(path, false))
521 bool CTempFile::Create(CFSTR prefix, NIO::COutFile *outFile) argument
525 if (!CreateTempFile(prefix, false, _path, outFile))
531 bool CTempFile::CreateRandomInTempFolder(CFSTR namePrefix, NIO::COutFile *outFile) argument
538 if (!CreateTempFile(tempPath + namePrefix, true, _path, outFile))
/external/webrtc/webrtc/modules/audio_processing/aecm/
H A Daecm_core.h132 FILE *outFile; member in struct:__anon21511
/external/deqp/executor/tools/
H A DxeCommandLineExecutor.cpp136 string outFile; member in struct:__anon3723::CommandLine
200 cmdLine.outFile = opts.getOption<opt::TestLogFile>();
621 if (!cmdLine.outFile.empty())
623 xe::writeBatchResultToFile(batchResult, cmdLine.outFile.c_str());
624 printf("Test log written to %s\n", cmdLine.outFile.c_str());
639 if (!cmdLine.outFile.empty())
641 xe::writeBatchResultToFile(batchResult, cmdLine.outFile.c_str());
642 printf("Test log written to %s\n", cmdLine.outFile.c_str());
/external/libopus/src/
H A Dopus_demo.c220 char *inFile, *outFile; local
515 outFile = argv[argc-1];
516 fout = fopen(outFile, "wb+");
/external/webrtc/webrtc/modules/audio_processing/aec/
H A Daec_core_internal.h170 rtc_WavWriter* outFile; member in struct:AecCore
/external/skia/tests/
H A DPathOpsSkpClipTest.cpp431 SkString outFile = get_sum_path(outDir); local
432 outFile.appendf("%s%s", PATH_SLASH, pngName);
433 if (!SkImageEncoder::EncodeFile(outFile.c_str(), bitmap, SkImageEncoder::kPNG_Type, 100)) {
H A DSkpSkGrTest.cpp372 SkString outFile = make_filepath(0, outDir, pngName); local
373 if (!SkImageEncoder::EncodeFile(outFile.c_str(), bitmap,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-junit.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 1816 milliseconds

123