HomeSort by relevance Sort by last modified time
    Searched defs:uiSourceCode (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
EditingLocationHistoryManager.js 119 * @param {!WebInspector.UISourceCode} uiSourceCode
121 removeHistoryForSourceCode: function(uiSourceCode)
125 return entry._projectId === uiSourceCode.project().id() && entry._path === uiSourceCode.path();
145 var uiSourceCode = sourceFrame.uiSourceCode();
146 this._projectId = uiSourceCode.project().id();
147 this._path = uiSourceCode.path();
182 var uiSourceCode = WebInspector.workspace.project(this._projectId).uiSourceCode(this._path)
    [all...]
UISourceCodeFrame.js 32 * @param {!WebInspector.UISourceCode} uiSourceCode
34 WebInspector.UISourceCodeFrame = function(uiSourceCode)
36 this._uiSourceCode = uiSourceCode;
41 this._uiSourceCode.addEventListener(WebInspector.UISourceCode.Events.WorkingCopyChanged, this._onWorkingCopyChanged, this);
42 this._uiSourceCode.addEventListener(WebInspector.UISourceCode.Events.WorkingCopyCommitted, this._onWorkingCopyCommitted, this);
48 * @return {!WebInspector.UISourceCode}
50 uiSourceCode: function()
NavigatorView.js 50 /** @type {!Map.<!WebInspector.UISourceCode, !WebInspector.NavigatorUISourceCodeTreeNode>} */
97 * @param {!WebInspector.UISourceCode} uiSourceCode
100 accept: function(uiSourceCode)
102 return !uiSourceCode.project().isServiceProject();
106 * @param {!WebInspector.UISourceCode} uiSourceCode
108 _addUISourceCode: function(uiSourceCode)
110 if (!this.accept(uiSourceCode))
112 var projectNode = this._projectNode(uiSourceCode.project())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
Workspace.js 223 /** @type {!Object.<string, !{uiSourceCode: !WebInspector.UISourceCode, index: number}>} */
225 /** @type {!Array.<!WebInspector.UISourceCode>} */
272 var uiSourceCode = this.uiSourceCode(path);
273 if (uiSourceCode)
276 uiSourceCode = new WebInspector.UISourceCode(this, fileDescriptor.parentPath, fileDescriptor.name, fileDescriptor.originURL, fileDescriptor.url, fileDescriptor.contentType);
278 this._uiSourceCodesMap[path] = {uiSourceCode: uiSourceCode, index: this._uiSourceCodesList.length}
    [all...]
BreakpointManager.js 59 WebInspector.BreakpointManager._sourceFileId = function(uiSourceCode)
61 if (!uiSourceCode.url)
63 return uiSourceCode.uri();
103 * @param {!WebInspector.UISourceCode} uiSourceCode
105 _restoreBreakpoints: function(uiSourceCode)
107 var sourceFileId = WebInspector.BreakpointManager._sourceFileId(uiSourceCode);
112 var breakpointItems = this._storage.breakpointItems(uiSourceCode);
119 if (!this._breakpointsForPrimaryUISourceCode.get(uiSourceCode))
120 this._breakpointsForPrimaryUISourceCode.put(uiSourceCode, []);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
ExtensionServer.js 312 var uiSourceCode = WebInspector.workspace.uiSourceCodeForURL(message.url);
313 if (uiSourceCode) {
314 WebInspector.Revealer.reveal(uiSourceCode.uiLocation(message.lineNumber, 0));
557 var uiSourceCode = WebInspector.workspace.uiSourceCodeForOriginURL(url);
558 if (!uiSourceCode) {
564 uiSourceCode.setWorkingCopy(message.content);
566 uiSourceCode.commitWorkingCopy(callbackWrapper.bind(this));
760 var uiSourceCode = /** @type {!WebInspector.UISourceCode} */ (event.data);
761 this._postNotification(WebInspector.extensionAPI.Events.ResourceAdded, this._makeResource(uiSourceCode));
    [all...]

Completed in 162 milliseconds