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

1 2 3

  /cts/tools/vm-tests-tf/src/util/build/
JavacBuildStep.java 50 File destFile = new File(destPath);
51 if (!destFile.exists() && !destFile.mkdirs())
  /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)
  /frameworks/base/core/java/android/os/
FileUtils.java 161 // copy a file from srcFile to destFile, return true if succeed, return
163 public static boolean copyFile(File srcFile, File destFile) {
168 result = copyToFile(in, destFile);
179 * Copy data from a source stream to destFile.
182 public static boolean copyToFile(InputStream inputStream, File destFile) {
184 if (destFile.exists()) {
185 destFile.delete();
187 FileOutputStream out = new FileOutputStream(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);