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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DirectoryEntrySync.idl 36 [RaisesException] DirectoryEntrySync getDirectory([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString path, Dictionary flags);
DOMFilePath.h 50 static String getDirectory(const String& path);
DirectoryEntry.h 58 void getDirectory(const String& path, const Dictionary&, PassRefPtr<EntryCallback> = 0, PassRefPtr<ErrorCallback> = 0);
DirectoryEntrySync.h 56 PassRefPtr<DirectoryEntrySync> getDirectory(const String& path, const Dictionary&, ExceptionState&);
DirectoryEntry.cpp 61 void DirectoryEntry::getDirectory(const String& path, const Dictionary& options, PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef)
65 if (!m_fileSystem->getDirectory(this, path, flags, successCallback, errorCallback))
DirectoryEntry.idl 36 void getDirectory([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString path, optional Dictionary options, optional EntryCallback successCallback, optional ErrorCallback errorCallback);
DirectoryEntrySync.cpp 65 PassRefPtr<DirectoryEntrySync> DirectoryEntrySync::getDirectory(const String& path, const Dictionary& options, ExceptionState& es)
69 if (!m_fileSystem->getDirectory(this, path, flags, helper.successCallback(), helper.errorCallback(), DOMFileSystemBase::Synchronous)) {
EntrySync.cpp 96 String parentPath = DOMFilePath::getDirectory(fullPath());
DOMFileSystemBase.cpp 166 if (isSameFileSystem && (newName.isEmpty() || source->name() == newName) && DOMFilePath::getDirectory(source->fullPath()) == parent->fullPath())
248 String path = DOMFilePath::getDirectory(entry->fullPath());
270 bool DOMFileSystemBase::getDirectory(const EntryBase* entry, const String& path, const FileSystemFlags& flags, PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, SynchronousType synchronousType)
DOMFilePath.cpp 65 String DOMFilePath::getDirectory(const String& path)
DOMFileSystemBase.h 103 bool getDirectory(const EntryBase*, const String& path, const FileSystemFlags&, PassRefPtr<EntryCallback>, PassRefPtr<ErrorCallback>, SynchronousType = Asynchronous);
WorkerGlobalScopeFileSystem.cpp 130 RefPtr<EntrySync> entry = fileSystem->root()->getDirectory(filePath, Dictionary(), es);
  /external/llvm/lib/ExecutionEngine/
EventListenerCommon.h 48 StringRef DirName = DIScope.getDirectory();
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
FsDirectoryEntry.java 134 public FsDirectory getDirectory()
  /external/clang/unittests/Basic/
FileManagerTest.cpp 97 EXPECT_EQ(NULL, manager.getDirectory("virtual/dir/foo"));
98 EXPECT_EQ(NULL, manager.getDirectory("virtual/dir"));
99 EXPECT_EQ(NULL, manager.getDirectory("virtual"));
108 EXPECT_EQ(NULL, manager.getDirectory("virtual/dir/foo"));
110 const DirectoryEntry *dir = manager.getDirectory("virtual/dir");
114 dir = manager.getDirectory("virtual");