HomeSort by relevance Sort by last modified time
    Searched refs:destFile (Results 1 - 25 of 369) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tools/vm-tests-tf/src/util/build/
SourceBuildStep.java 23 SourceBuildStep(File destFile) {
24 super(destFile);
JavacBuildStep.java 52 File destFile = new File(destPath);
53 if (!destFile.exists() && !destFile.mkdirs())
  /external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
AgentITMojo.java 22 * <li>different <code>destFile</code></li>
37 * @parameter property="jacoco.destFile"
40 private File destFile;
43 * @return the destFile
47 return destFile;
AgentMojo.java 66 * @parameter property="jacoco.destFile"
69 private File destFile;
72 * @return the destFile
76 return destFile;
MergeMojo.java 40 * @parameter property="jacoco.destFile"
43 private File destFile;
125 + destFile.getAbsolutePath());
127 loader.save(destFile, false);
130 + destFile.getAbsolutePath(), e);
DumpMojo.java 46 * @parameter property="jacoco.destFile"
49 private File destFile;
123 destFile.getAbsolutePath()));
124 loader.save(destFile, append);
  /platform_testing/libraries/timeresult-helper/src/android/support/test/timeresulthelper/
TimeResultLogger.java 30 public static void writeTimeStamp(String logType, String testCase, long delay, File destFile)
32 writeTimeStamp(logType, testCase, System.currentTimeMillis(), delay, destFile);
36 long delay, File destFile) throws IOException {
37 FileWriter outputWriter = new FileWriter(destFile, true);
43 public static void writeTimeStampLogStart(String testCase, File destFile) throws IOException {
44 writeTimeStamp("AUTOTEST_TEST_BEGIN", testCase, 5 * 1000, destFile);
47 public static void writeTimeStampLogEnd(String testCase, File destFile) throws IOException {
48 writeTimeStamp("AUTOTEST_TEST_SUCCESS", testCase, 0, destFile);
51 public static void writeResultToFile(String testCase, File destFile, Bundle result)
53 FileWriter outputWriter = new FileWriter(destFile, true)
    [all...]
  /external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/output/
FileOutputTest.java 37 File destFile = folder.newFile("jacoco.exec");
39 options.setDestfile(destFile.getAbsolutePath());
44 assertTrue("Execution data file should be created", destFile.exists());
46 destFile.length());
51 File destFile = folder.newFile("jacoco.exec");
53 options.setDestfile(destFile.getAbsolutePath());
60 assertTrue("Execution data file should be created", destFile.exists());
62 destFile.length() > 0);
  /external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/output/
FileOutput.java 27 * <li>destfile</li>
35 private File destFile;
42 this.destFile = new File(options.getDestfile()).getAbsoluteFile();
44 final File folder = destFile.getParentFile();
67 final FileOutputStream file = new FileOutputStream(destFile, append);
  /cts/libs/deviceutil/src/android/cts/util/
FileUtils.java 106 * Copy data from a source stream to destFile.
109 public static boolean copyToFile(InputStream inputStream, File destFile) {
111 if (destFile.exists()) {
112 destFile.delete();
114 FileOutputStream out = new FileOutputStream(destFile);
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
FileUtils.java 602 * @param destFile the new file, must not be <code>null</code>
609 public static void copyFile(File srcFile, File destFile) throws IOException {
610 copyFile(srcFile, destFile, true);
622 * @param destFile the new file, must not be <code>null</code>
631 public static void copyFile(File srcFile, File destFile,
636 if (destFile == null) {
645 if (srcFile.getCanonicalPath().equals(destFile.getCanonicalPath())) {
646 throw new IOException("Source '" + srcFile + "' and destination '" + destFile + "' are the same");
648 if (destFile.getParentFile() != null && destFile.getParentFile().exists() == false)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/templates/
SimpleFile.java 91 IFile destFile = project.getFile(new Path(op.destination));
92 if (destFile.exists())
97 mkDirs(project, destFile.getParent(), monitor);
106 destFile.create(in, true, monitor);
  /frameworks/base/packages/Keyguard/scripts/
new_merge.py 64 destFile = destDir + file
69 prepareFileForCompare(destFile, TEMP_FILE2, FW_RES_IMPORT,)
71 prepareFileForCompare(destFile, TEMP_FILE1, FW_RES_IMPORT, FW_PKG, PROTO_PKG)
77 diff(sourceFile, destFile)
81 diff(sourceFile, destFile)
  /cts/tests/JobScheduler/src/android/jobscheduler/cts/
TriggerContentTest.java 155 public static void copyToFileOrThrow(InputStream inputStream, File destFile)
157 if (destFile.exists()) {
158 destFile.delete();
160 FileOutputStream out = new FileOutputStream(destFile);
178 public Uri createAndAddImage(File destFile, InputStream image) throws IOException,
180 copyToFileOrThrow(image, destFile);
182 boolean success = scanner.scan(getContext(), destFile.toString(), "image/jpeg");
  /frameworks/base/core/java/android/os/
FileUtils.java 190 public static boolean copyFile(File srcFile, File destFile) {
192 copyFileOrThrow(srcFile, destFile);
199 // copy a file from srcFile to destFile, return true if succeed, return
201 public static void copyFileOrThrow(File srcFile, File destFile) throws IOException {
203 copyToFileOrThrow(in, destFile);
208 public static boolean copyToFile(InputStream inputStream, File destFile) {
210 copyToFileOrThrow(inputStream, destFile);
218 * Copy data from a source stream to destFile.
221 public static void copyToFileOrThrow(InputStream inputStream, File destFile)
223 if (destFile.exists())
    [all...]
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/util/
CollectorUtil.java 63 File destFile = new File(String.format("%s/%s", dest, fileName));
64 device.pullFile(srcPath, destFile);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/services/rss/
RSSFeedPublisherTask.java 176 File destFile = new File(CVSTemp + FS + "checkoutDir" + FS + filename); //$NON-NLS-1$
177 boolean fileInCVS = destFile.isFile();
183 RSSFeedUtil.transferData(new FileInputStream(file),new FileOutputStream(destFile));
RSSFeedWatcherTask.java 224 private void downloadFeed(File destFile, boolean verbose)
230 System.out.println(Messages.getString("RSSFeedWatcherTask.To") + CL + SP + destFile + SP); //$NON-NLS-1$
232 RSSFeedUtil.transferData((new URL(feedURL)).openStream(), new FileOutputStream(destFile));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/
Draw9PatchEditor.java 118 IFile destFile = mProject.getFile(NinePatchedImage.getNinePatchedFileName(
120 if (!destFile.exists()) {
121 mFileEditorInput = new FileEditorInput(destFile);
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/preloader/
PreloaderBundleGenerator.java 156 FileWrapper destFile = destDir.child(srcFile.name());
158 copyDirectory(srcFile, destFile, filter, assets);
160 copyFile(srcFile, destFile, filter, assets);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-netrexx.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-p2-repository-plugin/0.20.0/
tycho-p2-repository-plugin-0.20.0.jar 
  /external/libgdx/extensions/gdx-jnigen/src/com/badlogic/gdx/jnigen/
FileDescriptor.java 581 FileDescriptor destFile = destDir.child(srcFile.name());
583 copyDirectory(srcFile, destFile);
585 copyFile(srcFile, destFile);
  /prebuilts/tools/common/m2/repository/org/apache/maven/doxia/doxia-site-renderer/1.0/
doxia-site-renderer-1.0.jar 
  /frameworks/base/core/java/com/android/internal/util/
FileRotator.java 355 final File destFile = new File(mBasePath, info.build());
356 file.renameTo(destFile);

Completed in 585 milliseconds

1 2 3 4 5 6 7 8 91011>>