HomeSort by relevance Sort by last modified time
    Searched refs:sourceFileId (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebCore/inspector/front-end/
DebuggerPresentationModel.js 72 sourceFile: function(sourceFileId)
74 return this._sourceFiles[sourceFileId];
82 requestSourceFileContent: function(sourceFileId, callback)
84 this._sourceFiles[sourceFileId].requestContent(callback);
99 var sourceFileId = this._createSourceFileId(script.sourceURL, script.sourceID);
100 var sourceFile = this._sourceFiles[sourceFileId];
108 this.dispatchEventToListeners(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), this._formatter());
114 this._sourceFiles[sourceFileId] = sourceFile
    [all...]
ScriptsPanel.js 276 _addOptionToFilesSelect: function(sourceFileId)
278 var sourceFile = this._presentationModel.sourceFile(sourceFileId);
296 option._sourceFileId = sourceFileId;
297 this._sourceFileIdToFilesSelectOption[sourceFileId] = option;
300 setScriptSourceIsBeingEdited: function(sourceFileId, inEditMode)
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...]
BreakpointsSidebarPane.js 87 this._items[this._createBreakpointItemId(breakpoint.sourceFileId, breakpoint.lineNumber)] = breakpointItem;
93 removeBreakpoint: function(sourceFileId, lineNumber)
95 var breakpointItemId = this._createBreakpointItemId(sourceFileId, lineNumber);
103 highlightBreakpoint: function(sourceFileId, lineNumber)
105 var breakpointItem = this._items[this._createBreakpointItemId(sourceFileId, lineNumber)];
120 _createBreakpointItemId: function(sourceFileId, lineNumber)
122 return sourceFileId + ":" + lineNumber;
127 this._showSourceLineDelegate(breakpoint.sourceFileId, breakpoint.lineNumber);
135 this._model.setBreakpointEnabled(breakpoint.sourceFileId, breakpoint.lineNumber, event.target.checked);
142 var removeHandler = this._model.removeBreakpoint.bind(this._model, breakpoint.sourceFileId, breakpoint.lineNumber)
    [all...]
CallStackSidebarPane.js 63 function didGetSourceLine(placard, sourceFileId, lineNumber)
SourceFile.js 237 WebInspector.FormattedSourceFile = function(sourceFileId, script, contentChangedDelegate, formatter)
239 WebInspector.SourceFile.call(this, sourceFileId, script, contentChangedDelegate);

Completed in 2583 milliseconds