/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
D | FileSystemMapping.js | 96 for (var fileSystemPath in savedMapping) { 97 var savedFileSystemMappings = savedMapping[fileSystemPath]; 99 this._fileSystemMappings[fileSystemPath] = []; 100 var fileSystemMappings = this._fileSystemMappings[fileSystemPath]; 104 …var entry = new WebInspector.FileSystemMapping.Entry(savedEntry.fileSystemPath, savedEntry.urlPref… 111 for (var fileSystemPath in savedExcludedFolders) { 112 var savedExcludedFoldersForPath = savedExcludedFolders[fileSystemPath]; 114 this._excludedFolders[fileSystemPath] = []; 115 var excludedFolders = this._excludedFolders[fileSystemPath]; 119 … = new WebInspector.FileSystemMapping.ExcludedFolderEntry(savedEntry.fileSystemPath, savedEntry.pa… [all …]
|
D | IsolatedFileSystemManager.js | 86 removeFileSystem: function(fileSystemPath) argument 88 InspectorFrontendHost.removeFileSystem(fileSystemPath); 99 addedFileSystemPaths[fileSystems[i].fileSystemPath] = true; 103 var fileSystemPath = fileSystemPaths[i]; 104 if (!addedFileSystemPaths[fileSystemPath]) 105 this._fileSystemRemoved(fileSystemPath); 117 var fileSystemPath = fileSystem.fileSystemPath; 118 this._fileSystemMapping.addFileSystem(fileSystemPath); 119 …var isolatedFileSystem = new WebInspector.IsolatedFileSystem(this, fileSystemPath, fileSystem.file… 120 this._fileSystems[fileSystemPath] = isolatedFileSystem; [all …]
|
D | EditFileSystemDialog.js | 36 WebInspector.EditFileSystemDialog = function(fileSystemPath) argument 39 this._fileSystemPath = fileSystemPath; 78 …edFolderEntries = WebInspector.isolatedFileSystemManager.mapping().excludedFolders(fileSystemPath); 91 WebInspector.EditFileSystemDialog.show = function(element, fileSystemPath) argument 93 WebInspector.Dialog.show(element, new WebInspector.EditFileSystemDialog(fileSystemPath)); 146 if (this._fileSystemPath !== entry.fileSystemPath) 189 var fileSystemPath = this._entries[itemId].fileSystemPath; 190 …WebInspector.isolatedFileSystemManager.mapping().removeFileMapping(fileSystemPath, urlPrefix, path… 221 …WebInspector.isolatedFileSystemManager.mapping().removeFileMapping(entry.fileSystemPath, entry.url… 251 var fileSystemPath = entry.fileSystemPath; [all …]
|
D | InspectorFrontendAPI.js | 145 fileSystemRemoved: function(fileSystemPath) argument 147 WebInspector.isolatedFileSystemDispatcher.fileSystemRemoved(fileSystemPath); 155 indexingTotalWorkCalculated: function(requestId, fileSystemPath, totalWork) argument 157 var projectDelegate = WebInspector.fileSystemWorkspaceProvider.delegate(fileSystemPath); 161 indexingWorked: function(requestId, fileSystemPath, worked) argument 163 var projectDelegate = WebInspector.fileSystemWorkspaceProvider.delegate(fileSystemPath); 167 indexingDone: function(requestId, fileSystemPath) argument 169 var projectDelegate = WebInspector.fileSystemWorkspaceProvider.delegate(fileSystemPath); 173 searchCompleted: function(requestId, fileSystemPath, files) argument 175 var projectDelegate = WebInspector.fileSystemWorkspaceProvider.delegate(fileSystemPath);
|
D | InspectorFrontendHostStub.js | 194 removeFileSystem: function(fileSystemPath) argument 207 indexPath: function(requestId, fileSystemPath) argument 215 searchInPath: function(requestId, fileSystemPath, query) argument
|
D | Workspace.js | 663 var projectId = WebInspector.FileSystemProjectDelegate.projectId(file.fileSystemPath); 673 urlForPath: function(fileSystemPath, filePath) argument 675 return this._fileSystemMapping.urlForPath(fileSystemPath, filePath); 687 var fileSystemPath = fileSystemWorkspaceProvider.fileSystemPath(uiSourceCode); 688 this._fileSystemMapping.addMappingForResource(url, fileSystemPath, path);
|
D | externs.js | 236 InspectorFrontendHostAPI.prototype.indexPath = function(requestId, fileSystemPath, callback) {} argument 249 InspectorFrontendHostAPI.prototype.removeFileSystem = function(fileSystemPath, callback) {} argument 255 InspectorFrontendHostAPI.prototype.searchInPath = function(requestId, fileSystemPath, query, callba… argument
|
D | SettingsScreen.js | 605 var fileSystemPath = id; 608 pathElement.title = fileSystemPath; 613 var lastIndexOfSlash = fileSystemPath.lastIndexOf(WebInspector.isWin() ? "\\" : "/"); 614 var folderName = fileSystemPath.substr(lastIndexOfSlash + 1); 615 var folderPath = fileSystemPath.substr(0, lastIndexOfSlash + 1);
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebFrameImpl.h | 142 const WebString& fileSystemPath,
|
D | WebFrameImpl.cpp | 903 …leSystemType type, const WebString& fileSystemName, const WebString& fileSystemPath, const WebStri… in createFileEntry() argument 907 …e, static_cast<WebCore::FileSystemType>(type), KURL(ParsedURLString, fileSystemPath.utf8().data())… in createFileEntry()
|