OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:removeRecursively
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DirectoryEntry.cpp
64
void DirectoryEntry::
removeRecursively
(VoidCallback* successCallback, ErrorCallback* errorCallback) const
66
m_fileSystem->
removeRecursively
(this, successCallback, errorCallback);
DirectoryEntrySync.cpp
69
void DirectoryEntrySync::
removeRecursively
(ExceptionState& exceptionState)
72
m_fileSystem->
removeRecursively
(this, helper->successCallback(), helper->errorCallback(), DOMFileSystemBase::Synchronous);
DOMFileSystemBase.cpp
310
void DOMFileSystemBase::
removeRecursively
(const EntryBase* entry, VoidCallback* successCallback, ErrorCallback* errorCallback, SynchronousType synchronousType)
327
fileSystem()->
removeRecursively
(createFileSystemURL(entry), callbacks.release());
/external/chromium_org/third_party/WebKit/public/platform/
WebFileSystem.h
98
virtual void
removeRecursively
(const WebURL& path, WebFileSystemCallbacks) { BLINK_ASSERT_NOT_REACHED(); }
/external/chromium_org/content/child/fileapi/
webfilesystem_impl.cc
511
void WebFileSystemImpl::
removeRecursively
(
Completed in 536 milliseconds