Home
last modified time | relevance | path

Searched refs:destFile (Results 1 – 10 of 10) sorted by relevance

/external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/output/
DFileOutputTest.java37 File destFile = folder.newFile("jacoco.exec"); in testCreateDestFileOnStartup() local
39 options.setDestfile(destFile.getAbsolutePath()); in testCreateDestFileOnStartup()
44 assertTrue("Execution data file should be created", destFile.exists()); in testCreateDestFileOnStartup()
46 destFile.length()); in testCreateDestFileOnStartup()
51 File destFile = folder.newFile("jacoco.exec"); in testWriteData() local
53 options.setDestfile(destFile.getAbsolutePath()); in testWriteData()
60 assertTrue("Execution data file should be created", destFile.exists()); in testWriteData()
62 destFile.length() > 0); in testWriteData()
/external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/output/
DFileOutput.java35 private File destFile; field in FileOutput
42 this.destFile = new File(options.getDestfile()).getAbsoluteFile(); in startup()
44 final File folder = destFile.getParentFile(); in startup()
67 final FileOutputStream file = new FileOutputStream(destFile, append); in openFile()
/external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
DMergeMojo.java41 private File destFile; field in MergeMojo
121 + destFile.getAbsolutePath()); in save()
123 loader.save(destFile, false); in save()
126 + destFile.getAbsolutePath(), e); in save()
DDumpMojo.java48 private File destFile; field in DumpMojo
116 destFile.getAbsolutePath())); in executeMojo()
117 loader.save(destFile, append); in executeMojo()
DAgentITMojo.java39 private File destFile; field in AgentITMojo
46 return destFile; in getDestFile()
DAgentMojo.java91 private File destFile; field in AgentMojo
98 return destFile; in getDestFile()
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/
DJarInstrumentor.java51 private void instrumentJar(File sourceFile, File destFile) throws IOException { in instrumentJar() argument
67 new BufferedOutputStream(new FileOutputStream(destFile), 32 * 1024))) { in instrumentJar()
68 System.out.println("Instrumenting from " + sourceFile + " to " + destFile); in instrumentJar()
/external/cldr/tools/java/org/unicode/cldr/util/
DFileCopier.java169 …public static void copyAndReplace(Class<?> cls, String srcFile, String destDir, String destFile, M… in copyAndReplace() argument
171 replacements, new FileWriter(Paths.get(destDir, destFile).toFile())); in copyAndReplace()
/external/catch2/scripts/
DreleaseCommon.py141destFile = os.path.join(catchPath, 'single_include', 'catch2', 'catch_reporter_{}.hpp'.format(rep))
142 shutil.copyfile(sourceFile, destFile)
/external/cldr/tools/java/org/unicode/cldr/ant/
DCLDRBuild.java27 private String destFile; field in CLDRBuild
59 File[] destFiles = destdir.listFiles(new PatternFilter(destFile)); in getLocalesList()
272 destFile = df; in setDestFile()