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

1 2 3

  /external/webkit/Tools/Scripts/
do-file-rename 80 my %newFile;
84 $newFile{$file} = $f if $f ne $file;
88 if ($newFile{$file}) {
89 my $newFile = $newFile{$file};
90 print "Renaming $file to $newFile\n";
91 scmMoveOrRenameFile($file, $newFile);
98 $file = $newFile{$file} if $newFile{$file};
do-webcore-rename 189 my $newFile = "";
190 $newFile = "$1$renames{$2}$3" if $file =~ /^(.*\/\w*)($key)(\w*\.\w+)$/;
191 if ($newFile ne "") {
192 return $newFile;
201 my %newFile;
205 $newFile{$file} = $f;
210 if ($newFile{$file}) {
211 my $newFile = $newFile{$file};
212 print "Renaming $file to $newFile\n"
    [all...]
  /external/junit/src/org/junit/rules/
TemporaryFolder.java 20 * File createdFile= folder.newFile("myfile.txt");
51 public File newFile(String fileName) throws IOException {
60 public File newFile() throws IOException {
  /external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
ResourceLoaderAdaptor.java 103 File file = newFile(name);
113 file = newFile(filePath);
130 * one important difference. It calls our subclassable newFile method.
144 File file = newFile(path, filename);
156 File newFile(String filename) {
160 File newFile(String path, String filename) {
  /dalvik/vm/
JarFile.cpp 113 bool newFile = false;
127 /*isBootstrap=*/false, &newFile, /*createIfMissing=*/false);
244 bool newFile = false;
270 isBootstrap, &newFile, /*createIfMissing=*/true);
284 if (newFile) {
RawDexFile.cpp 125 bool newFile = false;
162 adler32, isBootstrap, &newFile, /*createIfMissing=*/true);
177 if (newFile) {
  /cts/tests/tests/os/src/android/os/cts/
FileAccessPermissionTest.java 111 File newFile = new File(dir, System.currentTimeMillis() + "test.txt");
113 assertTrue(newFile.createNewFile());
114 writeFileCheck(newFile);
  /external/webkit/Source/WebCore/page/
GeolocationPositionCache.cpp 85 String newFile = SQLiteFileSystem::appendDatabaseFileNameToPath(path, databaseName);
87 if (m_databaseFile != newFile) {
88 m_databaseFile = newFile;
  /frameworks/base/core/tests/coretests/src/android/os/
MemoryFileTest.java 51 MemoryFile newFile = new MemoryFile("MemoryFileTest", 10000000);
52 newFile.allowPurging(true);
53 newFile.writeBytes(testString, 0, 0, testString.length);
54 files.add(newFile);
    [all...]
  /external/webkit/Tools/android/webkitmerge/
webkitmerge.cpp 203 bool Merge(const char* oldDir, const char* oldFile, const char* newDir, const char* newFile,
209 sandboxBase, oldDir, oldFile, oldBase, oldDir, oldFile, newBase, newDir, newFile, outFile);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/build/
AaptQuickFixTest.java 182 IFile newFile = project.getFile(path);
183 assertNotNull(path.toPortableString(), newFile);
187 assertEquals(newFile.getProjectRelativePath(),
197 String newFileContents = AdtPlugin.readFile(newFile);
  /external/emma/core/java12/com/vladium/emma/instr/
InstrProcessor.java 244 return isClass ? Files.newFile (m_outDir, CLASSES) : Files.newFile (m_outDir, LIB);
251 return Files.newFile (getFullOutDir (pathDir, isClass), file.getPath ());
InstrProcessorST.java 79 final File fullArchiveFile = Files.newFile (parentDir, archive);
126 m_origArchiveFile = Files.newFile (parentDir, archive);
435 final File inFile = Files.newFile (pathDir, file.getPath ());
553 final File inFile = Files.newFile (pathDir, file.getPath ());
665 final File classesDir = Files.newFile (m_outDir, CLASSES);
668 final File libDir = Files.newFile (m_outDir, LIB);
    [all...]
  /external/emma/core/java12/com/vladium/util/
Files.java 203 public static File newFile (final File dir, final File file)
218 public static File newFile (final File dir, final String file)
234 public static File newFile (final String dir, final String file)
  /external/llvm/lib/Archive/
Archive.cpp 70 bool ArchiveMember::replaceWith(const sys::Path& newFile, std::string* ErrMsg) {
72 if (sys::fs::exists(newFile.str(), Exists) || !Exists) {
79 path = newFile;
  /packages/apps/Nfc/src/com/android/nfc/handover/
HandoverTransfer.java 452 File newFile = new File(newPath);
454 while (newFile.exists()) {
457 newFile = new File(newPath);
460 return newFile;
  /external/emma/core/java12/com/vladium/emma/rt/
ClassPathProcessorST.java 83 m_archiveFile = Files.newFile (parentDir, archive.getPath ());
201 final File inFile = Files.newFile (pathDir, file.getPath ());
  /packages/apps/Email/src/com/android/email/provider/
AttachmentProvider.java 157 File newFile = new File(saveIn, id);
159 newFile, ParcelFileDescriptor.MODE_READ_WRITE |
  /frameworks/base/services/java/com/android/server/am/
UsageStatsService.java 316 File newFile = mFile;
319 if (newFile.exists()) {
320 readStatsFLOCK(newFile);
324 newFile.createNewFile();
327 Slog.w(TAG,"Error : " + e + " reading data from file:" + newFile);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jai.jar 
  /frameworks/base/media/java/android/mtp/
MtpDatabase.java 737 File newFile = new File(newPath);
738 boolean success = oldFile.renameTo(newFile);
758 newFile.renameTo(oldFile);
763 if (newFile.isDirectory()) {
    [all...]
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
VoiceDialerActivity.java 230 mCommandEngine.setContactsFile(newFile(getArg(CONTACTS_EXTRA)));
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractIncludeRefactoring.java 331 String newFile = sb.toString();
333 newFile = EclipseXmlPrettyPrinter.prettyPrint(newFile,
337 addFile.setEdit(new InsertEdit(0, newFile));
  /external/emma/core/java12/com/vladium/emma/report/lcov/
ReportGenerator.java 114 final File fullOutFile = Files.newFile(m_settings.getOutDir(), outFile);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateHandler.java     [all...]

Completed in 681 milliseconds

1 2 3