HomeSort by relevance Sort by last modified time
    Searched full:destinationpath (Results 1 - 15 of 15) sorted by null

  /external/webkit/Source/WebCore/fileapi/
DOMFileSystemBase.cpp 113 static bool verifyAndGetDestinationPathForCopyOrMove(const EntryBase* source, EntryBase* parent, const String& newName, String& destinationPath)
131 destinationPath = parent->fullPath();
133 destinationPath = DOMFilePath::append(destinationPath, newName);
135 destinationPath = DOMFilePath::append(destinationPath, source->name());
155 String destinationPath;
156 if (!verifyAndGetDestinationPathForCopyOrMove(source, parent, newName, destinationPath))
160 String destinationPlatformPath = parent->filesystem()->asyncFileSystem()->virtualToPlatformPath(destinationPath);
161 m_asyncFileSystem->move(sourcePlatformPath, destinationPlatformPath, EntryCallbacks::create(successCallback, errorCallback, this, destinationPath, source->isDirectory()))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
TraceOptions.java 44 boolean isActivityNameFullyQualified, String destinationPath,
50 this.traceDestination = destinationPath;
  /external/webkit/Source/WebKit/chromium/src/
AsyncFileSystemChromium.h 56 virtual void move(const String& sourcePath, const String& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks>);
57 virtual void copy(const String& sourcePath, const String& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks>);
WorkerFileSystemCallbacksBridge.cpp 161 void WorkerFileSystemCallbacksBridge::postMoveToMainThread(WebFileSystem* fileSystem, const String& sourcePath, const String& destinationPath, const String& mode)
163 dispatchTaskToMainThread(createCallbackTask(&moveOnMainThread, fileSystem, sourcePath, destinationPath, this, mode));
166 void WorkerFileSystemCallbacksBridge::postCopyToMainThread(WebFileSystem* fileSystem, const String& sourcePath, const String& destinationPath, const String& mode)
168 dispatchTaskToMainThread(createCallbackTask(&copyOnMainThread, fileSystem, sourcePath, destinationPath, this, mode));
227 void WorkerFileSystemCallbacksBridge::moveOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& sourcePath, const String& destinationPath, WorkerFileSystemCallbacksBridge* bridge, const String& mode)
229 fileSystem->move(sourcePath, destinationPath, MainThreadFileSystemCallbacks::createLeakedPtr(bridge, mode));
232 void WorkerFileSystemCallbacksBridge::copyOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& sourcePath, const String& destinationPath, WorkerFileSystemCallbacksBridge* bridge, const String& mode)
234 fileSystem->copy(sourcePath, destinationPath, MainThreadFileSystemCallbacks::createLeakedPtr(bridge, mode));
AsyncFileSystemChromium.cpp 64 void AsyncFileSystemChromium::move(const String& sourcePath, const String& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks> callbacks)
66 m_webFileSystem->move(sourcePath, destinationPath, new WebKit::WebFileSystemCallbacksImpl(callbacks));
69 void AsyncFileSystemChromium::copy(const String& sourcePath, const String& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks> callbacks)
71 m_webFileSystem->copy(sourcePath, destinationPath, new WebKit::WebFileSystemCallbacksImpl(callbacks));
WorkerAsyncFileSystemChromium.cpp 90 void WorkerAsyncFileSystemChromium::move(const String& sourcePath, const String& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks> callbacks)
92 createWorkerFileSystemCallbacksBridge(callbacks)->postMoveToMainThread(m_webFileSystem, sourcePath, destinationPath, m_modeForCurrentOperation);
95 void WorkerAsyncFileSystemChromium::copy(const String& sourcePath, const String& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks> callbacks)
97 createWorkerFileSystemCallbacksBridge(callbacks)->postCopyToMainThread(m_webFileSystem, sourcePath, destinationPath, m_modeForCurrentOperation);
WorkerAsyncFileSystemChromium.h 65 virtual void move(const String& sourcePath, const String& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks>);
66 virtual void copy(const String& sourcePath, const String& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks>);
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
UnmodifiableData.java 92 public void setSymlink(String sourcePath, String destinationPath) {
DelegatedData.java 211 public void setSymlink(String sourcePath, String destinationPath) {
212 getDelegate().setSymlink(sourcePath, destinationPath);
NestedMapData.java 379 public void setSymlink(String sourcePath, String destinationPath) {
380 setSymlink(sourcePath, createChild(destinationPath));
Data.java 172 void setSymlink(String sourcePath, String destinationPath);
DefaultDataContext.java 340 public void setSymlink(String sourcePath, String destinationPath) {
  /external/webkit/Source/WebKit/mac/Plugins/
WebNetscapePluginPackage.mm 220 NSString *destinationPath = [[NSFileManager defaultManager] destinationOfSymbolicLinkAtPath:path error:0];
221 type = [[[NSFileManager defaultManager] attributesOfItemAtPath:destinationPath error:0] fileHFSTypeCode];
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.ide_3.6.2.M20101117-0800.jar 
  /prebuilts/tools/common/gradle-plugins/repository/com/android/tools/internal/internal-plugins/1.0/
internal-plugins-1.0.jar 

Completed in 2070 milliseconds