Searched refs:sourceFileId (Results 1 – 6 of 6) sorted by relevance
/external/webkit/Source/WebCore/inspector/front-end/ |
D | DebuggerPresentationModel.js | 72 sourceFile: function(sourceFileId) argument 74 return this._sourceFiles[sourceFileId]; 82 requestSourceFileContent: function(sourceFileId, callback) argument 84 this._sourceFiles[sourceFileId].requestContent(callback); 99 var sourceFileId = this._createSourceFileId(script.sourceURL, script.sourceID); 100 var sourceFile = this._sourceFiles[sourceFileId]; 108 …(WebInspector.DebuggerPresentationModel.Events.SourceFileChanged, this._sourceFiles[sourceFileId]); 111 … sourceFile = new WebInspector.SourceFile(sourceFileId, script, contentChanged.bind(this)); 113 …sourceFile = new WebInspector.FormattedSourceFile(sourceFileId, script, contentChanged.bind(this),… 114 this._sourceFiles[sourceFileId] = sourceFile; [all …]
|
D | ScriptsPanel.js | 276 _addOptionToFilesSelect: function(sourceFileId) argument 278 var sourceFile = this._presentationModel.sourceFile(sourceFileId); 296 option._sourceFileId = sourceFileId; 297 this._sourceFileIdToFilesSelectOption[sourceFileId] = option; 300 setScriptSourceIsBeingEdited: function(sourceFileId, inEditMode) argument 302 var option = this._sourceFileIdToFilesSelectOption[sourceFileId]; 320 for (var sourceFileId in this._sourceFileIdToSourceFrame) 321 this._sourceFileIdToSourceFrame[sourceFileId].clearMessages(); 328 var sourceFrame = this._sourceFileIdToSourceFrame[message.sourceFileId]; 337 var sourceFrame = this._sourceFileIdToSourceFrame[breakpoint.sourceFileId]; [all …]
|
D | BreakpointsSidebarPane.js | 87 …this._items[this._createBreakpointItemId(breakpoint.sourceFileId, breakpoint.lineNumber)] = breakp… 93 removeBreakpoint: function(sourceFileId, lineNumber) argument 95 var breakpointItemId = this._createBreakpointItemId(sourceFileId, lineNumber); 103 highlightBreakpoint: function(sourceFileId, lineNumber) argument 105 var breakpointItem = this._items[this._createBreakpointItemId(sourceFileId, lineNumber)]; 120 _createBreakpointItemId: function(sourceFileId, lineNumber) argument 122 return sourceFileId + ":" + lineNumber; 127 this._showSourceLineDelegate(breakpoint.sourceFileId, breakpoint.lineNumber); 135 …this._model.setBreakpointEnabled(breakpoint.sourceFileId, breakpoint.lineNumber, event.target.chec… 142 …var removeHandler = this._model.removeBreakpoint.bind(this._model, breakpoint.sourceFileId, breakp…
|
D | SourceFile.js | 237 WebInspector.FormattedSourceFile = function(sourceFileId, script, contentChangedDelegate, formatter) argument 239 WebInspector.SourceFile.call(this, sourceFileId, script, contentChangedDelegate);
|
D | CallStackSidebarPane.js | 63 function didGetSourceLine(placard, sourceFileId, lineNumber) argument
|
/external/webkit/Source/WebCore/ |
D | ChangeLog | 36407 (WebInspector.PresentationBreakpoint.prototype.get sourceFileId): 54329 Web Inspector: rename "sourceName" to "sourceFileId" in ScriptsPanel.js. 54332 …sourceFileId better reflects the intention to have unique identifier for each source that is shown…
|