Searched refs:folderPath (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/ |
D | ParsedURL.js | 97 var folderPath; 103 folderPath = parsedURL.folderPathComponents; 109 folderPath = ""; 113 var splittedPath = folderPath.split("/");
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/ |
D | NavigatorView.js | 171 _folderNode: function(projectNode, folderPath) argument 173 if (!folderPath) 182 var folderNode = subfolderNodes.get(folderPath); 187 var index = folderPath.lastIndexOf("/"); 189 parentNode = this._folderNode(projectNode, folderPath.substring(0, index)); 191 var name = folderPath.substring(index + 1); 192 …FolderTreeNode(this, null, name, WebInspector.NavigatorTreeOutline.Types.Folder, folderPath, name); 193 subfolderNodes.put(folderPath, folderNode); 1302 WebInspector.NavigatorFolderTreeNode = function(navigatorView, project, id, type, folderPath, title) argument 1308 this._folderPath = folderPath;
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
D | FileSystemMapping.js | 317 isFileExcluded: function(fileSystemPath, folderPath) argument 322 if (entry.path === folderPath) 326 return regex && regex.test(folderPath);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/settings/ |
D | SettingsScreen.js | 503 var folderPath = fileSystemPath.substr(0, lastIndexOfSlash + 1); 504 …folderPath = folderPath.trimMiddle(maxTotalPathLength - Math.min(maxFolderNameLength, folderName.l… 508 folderPathElement.textContent = folderPath;
|