Searched refs:fileSystemPath (Results 1 - 25 of 27) sorted by relevance

12

/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DIsolatedFileSystemManager.js47 /** @typedef {{fileSystemName: string, rootURL: string, fileSystemPath: string}} */
90 removeFileSystem: function(fileSystemPath, callback)
93 InspectorFrontendHost.removeFileSystem(fileSystemPath);
112 var fileSystemPath = fileSystem.fileSystemPath;
113 this._fileSystemMapping.addFileSystemMapping(fileSystemPath);
114 var isolatedFileSystem = new WebInspector.IsolatedFileSystem(this, fileSystemPath, fileSystem.fileSystemName, fileSystem.rootURL);
115 this._fileSystems[fileSystemPath] = isolatedFileSystem;
129 for (var fileSystemPath in this._pendingFileSystemRequests) {
130 var callbacks = this._pendingFileSystemRequests[fileSystemPath];
[all...]
H A DFileSystemMapping.js79 * @param {string} fileSystemPath
81 addFileSystemMapping: function(fileSystemPath)
83 if (this._fileSystemPaths[fileSystemPath])
86 this._fileSystemPaths[fileSystemPath] = true;
92 * @param {string} fileSystemPath
94 removeFileSystemMapping: function(fileSystemPath)
96 if (!this._fileSystemPaths[fileSystemPath])
98 delete this._fileSystemPaths[fileSystemPath];
121 for (var fileSystemPath in this._fileSystemPaths) {
122 if (prefix.startsWith(fileSystemPath
[all...]
H A DFileSystemProjectDelegate.js46 WebInspector.FileSystemProjectDelegate.projectId = function(fileSystemPath)
48 return "filesystem:" + fileSystemPath;
71 fileSystemPath: function() method in class:WebInspector.FileSystemProjectDelegate
265 fileSystemPath: function(uiSourceCode) method in class:WebInspector.FileSystemWorkspaceProvider
268 return projectDelegate.fileSystemPath();
H A DWorkspace.js451 var fileSystemPath = entry ? this._fileSystemPathForEntry(entry) : null;
452 if (!fileSystemPath) {
460 var projectId = WebInspector.FileSystemProjectDelegate.projectId(fileSystemPath);
461 var pathPrefix = entry.pathPrefix.substr(fileSystemPath.length + 1);
495 var fileSystemPath = fileSystemWorkspaceProvider.fileSystemPath(uiSourceCode);
497 var pathPrefix = fileSystemPath + filePath.substr(0, filePath.length - suffix.length) + "/";
H A DInspectorFrontendAPI.js119 fileSystemRemoved: function(fileSystemPath)
121 WebInspector.isolatedFileSystemDispatcher.fileSystemRemoved(fileSystemPath);
H A DInspectorFrontendHostStub.js210 removeFileSystem: function(fileSystemPath)
H A DSettingsScreen.js588 * @param {string} fileSystemPath
590 _addFileSystemRow: function(fileSystemPath)
597 fileSystemRow.appendChild(this._createShowTextInput("file-system-path", fileSystemPath));
604 WebInspector.isolatedFileSystemManager.removeFileSystem(fileSystemPath, fileSystemRemoved.bind(this));
620 * @param {?string} fileSystemPath
622 _fileSystemAdded: function(fileSystemPath)
624 if (fileSystemPath)
625 this._addFileSystemRow(fileSystemPath);
H A Dexterns.js192 InspectorFrontendHostAPI.prototype.removeFileSystem = function(fileSystemPath) {}
/macosx-10.9.5/WebCore-7537.78.1/platform/qt/
H A DKURLQt.cpp40 String KURL::fileSystemPath() const function in class:WebCore::KURL
/macosx-10.9.5/WebCore-7537.78.1/platform/cf/
H A DKURLCFNet.cpp62 String KURL::fileSystemPath() const function in class:WebCore::KURL
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DWebOpenPanelResultListenerProxy.cpp61 filePaths.uncheckedAppend(url.fileSystemPath());
H A DWebProcessProxy.cpp244 m_localPathsWithAssumedReadAccess.add(baseURL.fileSystemPath());
252 String path = url.fileSystemPath();
285 String path = url.fileSystemPath();
287 if (KURL(KURL(), iter->value->url()).fileSystemPath() == path)
289 if (KURL(KURL(), iter->value->originalURL()).fileSystemPath() == path)
H A DWebInspectorProxy.cpp334 if (requestURL.isLocalFile() && requestURL.fileSystemPath() == inspectorURL.fileSystemPath()) {
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorFrontendHost.idl76 void removeFileSystem(DOMString fileSystemPath);
H A DInspectorFrontendClient.h81 virtual void removeFileSystem(const String& fileSystemPath) = 0;
H A DInspectorFrontendHost.h90 void removeFileSystem(const String& fileSystemPath);
H A DInspectorFrontendHost.cpp316 void InspectorFrontendHost::removeFileSystem(const String& fileSystemPath) argument
319 m_client->removeFileSystem(fileSystemPath);
/macosx-10.9.5/CF-855.17/
H A DCFError.c436 CFStringRef fileSystemPath = CFURLCopyFileSystemPath((CFURLRef)CFArrayGetValueAtIndex(paths, 0), kCFURLPOSIXPathStyle); local
437 if (fileSystemPath) {
438 CFStringRef path = CFStringCreateWithFormat(kCFAllocatorSystemDefault, NULL, CFSTR("%@/CoreServices/CoreTypes.bundle"), fileSystemPath);
440 CFRelease(fileSystemPath);
H A DCFURL.c2052 CF_EXPORT Boolean _CFURLInitWithFileSystemPath(CFURLRef uninitializedURL, CFStringRef fileSystemPath, CFURLPathStyle pathStyle, Boolean isDirectory, CFURLRef baseURL) argument
2055 CFStringRef input_fileSystemPath = fileSystemPath ? CFRetain(fileSystemPath) : NULL;
2061 CFAssert1(fileSystemPath != NULL, __kCFLogAssertion, "%s(): NULL path string not permitted", __PRETTY_FUNCTION__);
2075 CFIndex len = CFStringGetLength(fileSystemPath);
2078 // determine if fileSystemPath is an absolute path and what pathDelim we're using
2082 isAbsolute = (len > 0 && CFStringGetCharacterAtIndex(fileSystemPath, 0) == pathDelim);
2089 UniChar firstChar = 0 < len ? CFStringGetCharacterAtIndex(fileSystemPath, 0) : 0;
2090 UniChar secondChar = 1 < len ? CFStringGetCharacterAtIndex(fileSystemPath, 1) : 0;
2119 // Convert the fileSystemPath t
[all...]
H A DForFoundationOnly.h529 CF_EXPORT Boolean _CFURLInitWithFileSystemPath(CFURLRef uninitializedURL, CFStringRef fileSystemPath, CFURLPathStyle pathStyle, Boolean isDirectory, CFURLRef baseURL);
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebCoreSupport/
H A DGeolocationClientBlackBerry.cpp43 origin = securityOrigin->fileSystemPath();
/macosx-10.9.5/WebKit2-7537.78.2/Shared/Network/
H A DNetworkResourceLoadParameters.cpp89 SandboxExtension::createHandle(request.url().fileSystemPath(), SandboxExtension::ReadOnly, requestSandboxExtension);
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DKURL.h122 String fileSystemPath() const;
/macosx-10.9.5/WebCore-7537.78.1/platform/network/win/
H A DResourceHandleWin.cpp366 String fileName = firstRequest().url().fileSystemPath();
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DPage.cpp998 m_userStyleSheetPath = url.fileSystemPath();

Completed in 140 milliseconds

12