Searched refs:getFile (Results 1 - 25 of 178) sorted by relevance

12345678

/external/chromium_org/content/test/data/fileapi/
H A Dcreate_test.js7 fs.root.getFile('foo', {create: true, exclusive: false}, done,
H A Dquota_test.js6 fs.root.getFile('fd', {create: false, exclusive: false}, function(fileEntry) {
25 fs.root.getFile('fd', {create: true, exclusive: false}, function(fileEntry) {
/external/smack/src/org/jivesoftware/smackx/filetransfer/
H A DFileTransferRequest.java56 return streamInitiation.getFile().getName();
65 return streamInitiation.getFile().getSize();
74 return streamInitiation.getFile().getDesc();
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DURLTest.java79 "/dir1/dir2/test.cgi?point1.html", u.getFile());
87 assertTrue("u1 returns a wrong file", u1.getFile().equals(""));
97 "/dir1/dir2/test.cgi?point1.html", u2.getFile());
107 .getFile());
115 assertEquals("u3 returns a wrong file", "/", u3.getFile());
124 assertEquals("u3a returns a wrong file", "/", u3a.getFile());
133 assertTrue("u3b returns a wrong file", u3b.getFile().equals(""));
143 "/di!@$%^&*()_+r1/di:::r2/test.cgi?point1.html", u4.getFile());
150 assertEquals("u5 returns a wrong file", "/testing.tst", u5.getFile());
157 assertEquals("u5a returns a wrong file", "testing.tst", u5a.getFile());
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DDirectoryEntrySync.idl35 [RaisesException] FileEntrySync getFile([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString path, Dictionary flags);
H A DDirectoryEntry.cpp53 void DirectoryEntry::getFile(const String& path, const Dictionary& options, PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef) function in class:WebCore::DirectoryEntry
57 if (!m_fileSystem->getFile(this, path, flags, successCallback, errorCallback))
H A DDirectoryEntry.idl35 void getFile([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString path, optional Dictionary options, optional EntryCallback successCallback, optional ErrorCallback errorCallback);
H A DDirectoryEntrySync.cpp54 PassRefPtr<FileEntrySync> DirectoryEntrySync::getFile(const String& path, const Dictionary& options, ExceptionState& es) function in class:WebCore::DirectoryEntrySync
58 if (!m_fileSystem->getFile(this, path, flags, helper.successCallback(), helper.errorCallback(), DOMFileSystemBase::Synchronous)) {
H A DDirectoryEntry.h57 void getFile(const String& path, const Dictionary&, PassRefPtr<EntryCallback> = 0, PassRefPtr<ErrorCallback> = 0);
H A DDirectoryEntrySync.h55 PassRefPtr<FileEntrySync> getFile(const String& path, const Dictionary&, ExceptionState&);
/external/proguard/src/proguard/
H A DUpToDateChecker.java71 long lastModified = lastModified(classPathEntry.getFile(), true);
79 long lastModified = lastModified(classPathEntry.getFile(), false);
101 long lastModified = lastModified(classPathEntry.getFile(), false);
H A DClassPathEntry.java72 public File getFile() method in class:ClassPathEntry
/external/clang/unittests/Basic/
H A DFileManagerTest.cpp119 // getFile() returns non-NULL if a real file exists at the given path.
135 const FileEntry *file = manager.getFile("/tmp/test");
144 file = manager.getFile(FileName);
153 // getFile() returns non-NULL if a virtual file exists at the given path.
159 const FileEntry *file = manager.getFile("virtual/dir/bar.h");
168 // getFile() returns different FileEntries for different paths when
179 const FileEntry *fileFoo = manager.getFile("foo.cpp");
180 const FileEntry *fileBar = manager.getFile("bar.cpp");
186 // getFile() returns NULL if neither a real file nor a virtual file
198 const FileEntry *file = manager.getFile("xy
[all...]
/external/proguard/src/proguard/io/
H A DDirectoryWriter.java67 File directory = getFile(dataEntry);
87 File file = getFile(dataEntry);
134 private File getFile(DataEntry dataEntry) method in class:DirectoryWriter
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DUniformItemSection.java71 DexFile file = getFile();
83 DexFile file = getFile();
H A DEncodedArrayItem.java96 ValueEncoder encoder = new ValueEncoder(addedTo.getFile(), out);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/24/1/.cp/ant_tasks/
H A Dhelpbase-ant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/help/ org/eclipse/help/internal/ ...
/external/chromium_org/chrome/browser/resources/file_manager/js/photo/
H A Dgallery_item.js110 dirEntry.getFile(name + ext, {create: false, exclusive: false},
168 function getFile(dir, newFile) {
169 dir.getFile(name, {create: newFile, exclusive: newFile},
174 dir.getFile(name, {create: false, exclusive: false},
175 getFile.bind(null, dir, false /* existing file */),
176 getFile.bind(null, dir, true /* create new file */));
226 parentDir.getFile(newName, {create: false, exclusive: false}, onExists,
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DIsolatedFileSystem.js167 dirEntry.getFile(nameCandidate, { create: true, exclusive: true }, fileCreated, fileCreationError);
210 domFileSystem.root.getFile(path, null, fileEntryLoaded.bind(this), errorHandler.bind(this));
248 domFileSystem.root.getFile(path, null, fileEntryLoaded, errorHandler);
289 domFileSystem.root.getFile(path, null, fileEntryLoaded, errorHandler.bind(this));
345 domFileSystem.root.getFile(path, { create: true }, fileEntryLoaded, errorHandler.bind(this));
408 domFileSystem.root.getFile(path, null, fileEntryLoaded, errorHandler.bind(this));
431 dirEntry.getFile(newName, null, newFileEntryLoaded, newFileEntryLoadErrorHandler);
/external/llvm/include/llvm/Support/
H A DMemoryBuffer.h65 /// getFile - Open the specified file as a MemoryBuffer, returning a new
69 static error_code getFile(StringRef Filename, OwningPtr<MemoryBuffer> &result,
72 static error_code getFile(const char *Filename,
/external/guava/guava-tests/test/com/google/common/io/
H A DFileBackedOutputStreamTest.java50 final File file = out.getFile();
92 File file = out.getFile();
98 file = out.getFile();
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dapp_runtime_custom_bindings.js43 fs.root.getFile(item.baseName, {}, function(fileEntry) {
/external/clang/tools/libclang/
H A DCIndexInclusionStack.cpp52 const SrcMgr::FileInfo &FI = SL.getFile();
/external/llvm/utils/FileUpdate/
H A DFileUpdate.cpp56 MemoryBuffer::getFile(OutputFilename.c_str(), Out);
/external/clang/lib/ARCMigrate/
H A DFileRemapper.cpp70 if (llvm::MemoryBuffer::getFile(infoFile.c_str(), fileBuf))
84 const FileEntry *origFE = FileMgr->getFile(fromFilename);
90 const FileEntry *newFE = FileMgr->getFile(toFilename);
160 const FileEntry *newE = FileMgr->getFile(tempPath);
249 const FileEntry *file = FileMgr->getFile(filePath);

Completed in 754 milliseconds

12345678