Searched refs:DirectoryEntry (Results 1 - 20 of 20) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/Modules/filesystem/
H A DDOMFileSystem.idl39 readonly attribute DirectoryEntry root;
H A DDirectoryEntry.h50 class DirectoryEntry : public Entry { class in namespace:WebCore
52 static PassRefPtr<DirectoryEntry> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
54 return adoptRef(new DirectoryEntry(fileSystem, fullPath));
64 DirectoryEntry(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
H A DDirectoryEntry.cpp32 #include "DirectoryEntry.h"
44 DirectoryEntry::DirectoryEntry(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) function in class:WebCore::DirectoryEntry
49 PassRefPtr<DirectoryReader> DirectoryEntry::createReader()
54 void DirectoryEntry::getFile(const String& path, const Dictionary& options, PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef)
62 void DirectoryEntry::getDirectory(const String& path, const Dictionary& options, PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef)
70 void DirectoryEntry::removeRecursively(PassRefPtr<VoidCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef) const
H A DEntry.idl44 void moveTo(DirectoryEntry parent, [TreatNullAs=NullString, TreatUndefinedAs=NullString] optional DOMString name, optional EntryCallback successCallback, optional ErrorCallback errorCallback);
45 void copyTo(DirectoryEntry parent, [TreatNullAs=NullString, TreatUndefinedAs=NullString] optional DOMString name, optional EntryCallback successCallback, optional ErrorCallback errorCallback);
H A DEntry.h43 class DirectoryEntry;
55 void moveTo(PassRefPtr<DirectoryEntry> parent, const String& name = String(), PassRefPtr<EntryCallback> successCallback = 0, PassRefPtr<ErrorCallback> errorCallback = 0) const;
56 void copyTo(PassRefPtr<DirectoryEntry> parent, const String& name = String(), PassRefPtr<EntryCallback> successCallback = 0, PassRefPtr<ErrorCallback> errorCallback = 0) const;
H A DDirectoryEntry.idl37 ] interface DirectoryEntry : Entry {
H A DHTMLInputElementFileSystem.cpp38 #include "DirectoryEntry.h"
74 array->append(DirectoryEntry::create(filesystem, virtualPath));
H A DDOMFileSystem.h42 class DirectoryEntry;
55 PassRefPtr<DirectoryEntry> root();
H A DEntry.cpp36 #include "DirectoryEntry.h"
61 void Entry::moveTo(PassRefPtr<DirectoryEntry> parent, const String& name, PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef) const
68 void Entry::copyTo(PassRefPtr<DirectoryEntry> parent, const String& name, PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef) const
H A DFileSystemCallbacks.cpp40 #include "DirectoryEntry.h"
96 m_successCallback->handleEvent(DirectoryEntry::create(m_fileSystem, m_expectedPath).get());
123 m_entries->append(DirectoryEntry::create(m_directoryReader->filesystem(), DOMFilePath::append(m_basePath, name)));
167 static PassRefPtr<ErrorCallbackWrapper> create(PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, PassRefPtr<DirectoryEntry> root, const String& filePath)
183 ErrorCallbackWrapper(PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, PassRefPtr<DirectoryEntry> root, const String& filePath)
194 RefPtr<DirectoryEntry> m_root;
217 RefPtr<DirectoryEntry> root = DOMFileSystem::create(m_scriptExecutionContext.get(), name, m_type, rootURL, asyncFileSystem)->root();
H A DDOMFileSystemBase.h46 class DirectoryEntry;
H A DDOMFileSystem.cpp38 #include "DirectoryEntry.h"
95 PassRefPtr<DirectoryEntry> DOMFileSystem::root()
97 return DirectoryEntry::create(this, DOMFilePath::root);
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSEntryCustom.cpp56 return wrap<JSDirectoryEntry>(exec, globalObject, static_cast<DirectoryEntry*>(entry));
/macosx-10.9.5/ICU-511.35/icuSources/test/letest/
H A DFontObject.h21 struct DirectoryEntry struct
36 DirectoryEntry tableDirectory[ANY_NUMBER];
204 DirectoryEntry *findTable(LETag tag);
H A Dsfnt.h19 struct DirectoryEntry struct
28 typedef struct DirectoryEntry DirectoryEntry; typedef in typeref:struct:DirectoryEntry
38 DirectoryEntry tableDirectory[ANY_NUMBER];
H A DPortableFontInstance.h59 const DirectoryEntry *findTable(LETag tag) const;
H A DFontObject.cpp36 int dirSize = sizeof tempDir + ((numTables - ANY_NUMBER) * sizeof(DirectoryEntry));
60 DirectoryEntry *FontObject::findTable(LETag tag)
86 DirectoryEntry *entry = findTable(tag);
H A DPortableFontInstance.cpp88 le_int32 dirSize = sizeof tempDir + ((SWAPW(tempDir.numTables) - ANY_NUMBER) * sizeof(DirectoryEntry));
186 const DirectoryEntry *PortableFontInstance::findTable(LETag tag) const
214 const DirectoryEntry *entry = findTable(tag);
/macosx-10.9.5/ICU-511.35/icuSources/samples/layout/
H A Dsfnt.h24 struct DirectoryEntry struct
39 DirectoryEntry tableDirectory[ANY_NUMBER];
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorFileSystemAgent.cpp39 #include "DirectoryEntry.h"
250 m_directoryReader = static_cast<DirectoryEntry*>(entry)->createReader();
592 DirectoryEntry* directoryEntry = static_cast<DirectoryEntry*>(entry);

Completed in 339 milliseconds