Home | History | Annotate | Download | only in js

Lines Matching refs:breakpoint

236  * @param {number} sourceId Id of the script fot the breakpoint.
237 * @param {number} line Number of the line for the breakpoint.
238 * @param {?string} condition The breakpoint condition.
291 // It is necessary for being able to change a breakpoint just after it
292 // has been created (since we need an existing breakpoint id for that).
298 * @param {number} sourceId Id of the script for the breakpoint.
299 * @param {number} line Number of the line for the breakpoint.
327 // If we don't know id of this breakpoint in the v8 debugger we cannot send
337 * @param {number} sourceId Id of the script for the breakpoint.
338 * @param {number} line Number of the line for the breakpoint.
339 * @param {?string} condition New breakpoint condition.
358 // If we don't know id of this breakpoint in the v8 debugger we cannot send
397 * breakpoint or an exception.
653 * Removes specified breakpoint from the v8 debugger.
654 * @param {number} breakpointId Id of the breakpoint in the v8 debugger.
659 "breakpoint": breakpointId
666 * Changes breakpoint parameters in the v8 debugger.
667 * @param {number} breakpointId Id of the breakpoint in the v8 debugger.
668 * @param {boolean} enabled Whether to enable the breakpoint.
669 * @param {?string} condition New breakpoint condition.
670 * @param {number} ignoreCount New ignore count for the breakpoint.
675 "breakpoint": breakpointId,
913 var idInV8 = msg.getBody().breakpoint;
1242 * @return {?devtools.BreakpointInfo} Information on a breakpoint at the
1243 * specified line in the script or undefined if there is no breakpoint at
1253 * Adds breakpoint info to the script.
1254 * @param {devtools.BreakpointInfo} breakpoint
1256 devtools.ScriptInfo.prototype.addBreakpointInfo = function(breakpoint)
1258 this.lineToBreakpointInfo_[breakpoint.getLine()] = breakpoint;
1263 * @param {devtools.BreakpointInfo} breakpoint Breakpoint info to be removed.
1265 devtools.ScriptInfo.prototype.removeBreakpointInfo = function(breakpoint)
1267 var line = breakpoint.getLine();
1274 * @param {number} line Breakpoint 0-based line number in the containing script.
1295 * @return {number} Unique identifier of this breakpoint in the v8 debugger.
1304 * Sets id of this breakpoint in the v8 debugger.
1314 * Marks this breakpoint as removed from the front-end.
1323 * @return {boolean} Whether this breakpoint has been removed from the