/external/emma/core/java12/com/vladium/emma/report/lcov/ |
ReportGenerator.java | 107 File outFile = m_settings.getOutFile(); 108 if (outFile == null) 110 outFile = new File("coverage.lcov"); 111 m_settings.setOutFile(outFile); 114 final File fullOutFile = Files.newFile(m_settings.getOutDir(), outFile);
|
/external/emma/core/java12/com/vladium/emma/instr/ |
InstrProcessorST.java | 181 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)); [all...] |
/frameworks/base/core/tests/coretests/src/com/android/internal/http/multipart/ |
MultipartTest.java | 36 FileWriter outFile = new FileWriter(upload); 37 BufferedWriter out = new BufferedWriter(outFile);
|
/frameworks/base/tests/BandwidthTests/src/com/android/tests/bandwidthenforcement/ |
BandwidthEnforcementTestService.java | 67 File outFile = new File(extStorage, outputFile); 68 FileWriter writer = new FileWriter(outFile, true);
|
/packages/apps/Camera/tests/src/com/android/camera/stress/ |
ShotToShotLatency.java | 124 File outFile = new File(CAMERA_TEST_OUTPUT_FILE); 127 output = new BufferedWriter(new FileWriter(outFile, true));
|
/packages/apps/Gallery2/tests/src/com/android/gallery3d/stress/ |
ShotToShotLatency.java | 124 File outFile = new File(CAMERA_TEST_OUTPUT_FILE); 127 output = new BufferedWriter(new FileWriter(outFile, true));
|
/packages/apps/Gallery2/tests_camera/src/com/android/camera/stress/ |
ShotToShotLatency.java | 124 File outFile = new File(CAMERA_TEST_OUTPUT_FILE); 127 output = new BufferedWriter(new FileWriter(outFile, true));
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/debug/ |
DataExporter.java | 57 final File outFile = getOutputFile(context, fileName); 65 final ZipOutputStream os = new ZipOutputStream(new FileOutputStream(outFile));
|
/frameworks/base/core/java/android/webkit/ |
CacheManager.java | 74 File outFile;
|
/frameworks/compile/libbcc/bcinfo/tools/ |
main.cpp | 53 std::string outFile; 103 outFile = std::string(inFile.begin(), inFile.end() - 3) + ".ll"; 106 outFile = inFile + ".ll"; 338 new llvm::tool_output_file(outFile.c_str(), errmsg,
|
/cts/tools/cfassembler/src/dxconvext/ |
ClassFileParser.java | 80 // write the outfile to the same directory as the corresponding .java 82 String outFile = absSrcFilePath.substring(0, absSrcFilePath 86 w = new OutputStreamWriter(new FileOutputStream(new File(outFile))); 88 throw new RuntimeException("cannot write to file:"+outFile, e);
|
/external/emma/tools/java/com/vladium/tools/ |
ClassDep.java | 62 final File outFile = new File (args [1]); 85 final File parent = outFile.getParentFile (); 88 final FileOutputStream out = new FileOutputStream (outFile);
|
/external/mdnsresponder/mDNSPosix/ |
parselog.py | 175 outFile = "%s.pdf" % (".".join(inFile.split('.')[:-1])) 176 c = CGPDFContextCreateWithFilename (outFile, pageRect) 177 print "Writing " + outFile
|
/external/emma/core/java12/com/vladium/emma/report/txt/ |
ReportGenerator.java | 105 File outFile = m_settings.getOutFile (); 106 if (outFile == null) 108 outFile = new File ("coverage.txt"); 109 m_settings.setOutFile (outFile); 112 final File fullOutFile = Files.newFile (m_settings.getOutDir (), outFile);
|
/external/emma/core/java12/com/vladium/emma/report/xml/ |
ReportGenerator.java | 98 File outFile = m_settings.getOutFile (); 99 if (outFile == null) 101 outFile = new File ("coverage.xml"); 102 m_settings.setOutFile (outFile); 105 final File fullOutFile = Files.newFile (m_settings.getOutDir (), outFile);
|
/external/yaffs2/yaffs2/utils/ |
mkyaffs2image.c | 76 static int outFile; 228 error = write(outFile,data,chunkSize); 253 // return write(outFile,&pt,sizeof(yaffs_PackedTags2)); 254 return write(outFile,spare, spareSize); 611 outFile = open(image,O_CREAT | O_TRUNC | O_WRONLY, S_IREAD | S_IWRITE); 614 if(outFile < 0) 661 close(outFile); 677 close(outFile);
|
mkyaffsimage.c | 56 static int outFile; 239 error = write(outFile,data,512); 261 return write(outFile,&s,sizeof(yaffs_Spare)); 561 outFile = open(argv[2],O_CREAT | O_TRUNC | O_WRONLY, S_IREAD | S_IWRITE); 564 if(outFile < 0) 575 close(outFile); 589 close(outFile);
|
/external/webrtc/src/modules/audio_processing/aec/ |
aec_core.h | 151 FILE *outFile;
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/ |
MediaRecorderTest.java | 74 int videoFormat, int outFormat, String outFile, boolean videoOnly) { 84 mRecorder.setOutputFile(outFile); 175 int videoFormat, int outFormat, String outFile, boolean videoOnly) { 184 mRecorder.setOutputFile(outFile);
|
/external/emma/core/java12/com/vladium/emma/report/ |
ReportProperties.java | 65 public void setOutFile (final File outFile) 67 if ($assert.ENABLED) $assert.ASSERT (outFile != null, "null input: outFile"); 69 m_outFile = outFile;
|
/external/llvm/tools/bugpoint/ |
ExecutionDriver.cpp | 362 std::ofstream outFile(OutputFile.c_str(), std::ios_base::app); 363 outFile << "exit " << RetVal << '\n'; 364 outFile.close();
|
/frameworks/base/core/java/android/app/backup/ |
BackupAgent.java | 516 File outFile = new File(basePath, path); 517 String outPath = outFile.getCanonicalPath(); 520 onRestoreFile(data, size, outFile, type, mode, mtime);
|
/frameworks/base/core/tests/coretests/src/android/content/pm/ |
PackageManagerTests.java | 287 Uri getInstallablePackage(int fileResId, File outFile) { 295 FileUtils.setPermissions(outFile.getPath(), 298 assertTrue(FileUtils.copyToFile(is, outFile)); 299 FileUtils.setPermissions(outFile.getPath(), 302 return Uri.fromFile(outFile); 696 File outFile = new File(filesDir, outFileName); 697 Uri packageURI = getInstallablePackage(rawResId, outFile); [all...] |
/cts/tests/tests/media/src/android/media/cts/ |
MediaRecorderTest.java | 463 private void recordMedia(long maxFileSize, File outFile) throws Exception { 470 assertTrue(outFile.exists()); 474 assertTrue(outFile.length() < 1.1 * maxFileSize); 475 assertTrue(outFile.length() > 0);
|
/external/webrtc/src/modules/audio_processing/aecm/ |
aecm_core.h | 202 FILE *outFile;
|