HomeSort by relevance Sort by last modified time
    Searched full:breakpoint (Results 1 - 25 of 228) sorted by null

1 2 3 4 5 6 7 8 910

  /external/webkit/WebCore/inspector/front-end/
BreakpointsSidebarPane.js 33 this.listElement.className = "breakpoint-list";
43 addBreakpoint: function(breakpoint)
45 if (this.breakpoints[breakpoint.id])
48 this.breakpoints[breakpoint.id] = breakpoint;
50 breakpoint.addEventListener("enabled", this._breakpointEnableChanged, this);
51 breakpoint.addEventListener("disabled", this._breakpointEnableChanged, this);
52 breakpoint.addEventListener("text-changed", this._breakpointTextChanged, this);
54 this._appendBreakpointElement(breakpoint);
61 if (!InspectorBackend.debuggerEnabled() || !breakpoint.sourceID
    [all...]
SourceFrame.js 83 addBreakpoint: function(breakpoint)
85 this.breakpoints.push(breakpoint);
86 breakpoint.addEventListener("enabled", this._breakpointChanged, this);
87 breakpoint.addEventListener("disabled", this._breakpointChanged, this);
88 breakpoint.addEventListener("condition-changed", this._breakpointChanged, this);
90 this._addBreakpointToSource(breakpoint);
93 removeBreakpoint: function(breakpoint)
95 this.breakpoints.remove(breakpoint);
96 breakpoint.removeEventListener("enabled", null, this);
97 breakpoint.removeEventListener("disabled", null, this)
    [all...]
textViewer.css 88 .webkit-breakpoint .webkit-line-number {
90 background-image: -webkit-canvas(breakpoint);
93 .webkit-breakpoint-disabled .webkit-line-number {
95 background-image: -webkit-canvas(breakpoint-disabled);
98 .webkit-breakpoint.webkit-execution-line .webkit-line-number {
100 background-image: -webkit-canvas(breakpoint-program-counter);
103 .webkit-breakpoint-disabled.webkit-execution-line .webkit-line-number {
105 background-image: -webkit-canvas(breakpoint-disabled-program-counter);
108 .webkit-breakpoint.webkit-breakpoint-conditional .webkit-line-number
    [all...]
Breakpoint.js 26 WebInspector.Breakpoint = function(url, line, sourceID, condition)
36 WebInspector.Breakpoint.prototype = {
96 WebInspector.Breakpoint.prototype.__proto__ = WebInspector.Object.prototype;
ScriptsPanel.js 297 var breakpoint = breakpoints[i];
299 if (startingLine <= breakpoint.line) {
300 // remove and add the breakpoint, to clean up things like the sidebar
301 this.removeBreakpoint(breakpoint);
302 breakpoint.sourceID = sourceID;
303 this.addBreakpoint(breakpoint);
305 if (breakpoint.enabled)
306 InspectorBackend.addBreakpoint(breakpoint.sourceID, breakpoint.line, breakpoint.condition)
    [all...]
  /dalvik/vm/mterp/c/
OP_BREAKPOINT.c 12 * The breakpoint itself is handled over in updateDebugger(),
15 * yet handling those through breakpoint instructions. By the
16 * time we get here, the breakpoint has already been handled and
26 LOGE("Breakpoint hit in non-debug interpreter\n");
  /external/v8/test/mjsunit/
debug-changebreakpoint.js 70 testArguments(dcp, '{"breakpoint":0,"condition":"false"}', false);
72 testArguments(dcp, '{"breakpoint":3,"condition":"false"}', false);
73 testArguments(dcp, '{"breakpoint":"xx","condition":"false"}', false);
76 testArguments(dcp, '{"breakpoint":1}', true);
77 testArguments(dcp, '{"breakpoint":1,"enabled":"true"}', true);
78 testArguments(dcp, '{"breakpoint":1,"enabled":"false"}', true);
79 testArguments(dcp, '{"breakpoint":1,"condition":"1==2"}', true);
80 testArguments(dcp, '{"breakpoint":1,"condition":"false"}', true);
81 testArguments(dcp, '{"breakpoint":1,"ignoreCount":7}', true);
82 testArguments(dcp, '{"breakpoint":1,"ignoreCount":0}', true)
    [all...]
debug-enable-disable-breakpoints.js 51 // Set a breakpoint in f.
56 // Disable the breakpoint.
61 // Enable the breakpoint.
66 // Set another breakpoint in f at the same place.
71 // Disable the second breakpoint.
76 // Disable the first breakpoint.
87 // Disable the first breakpoint.
debug-conditional-breakpoints.js 51 // Conditional breakpoint which syntax error.
59 // Conditional breakpoint which evaluates to false.
67 // Conditional breakpoint which evaluates to true.
75 // Conditional breakpoint which different types of quotes.
105 // Conditional breakpoint which checks global variable.
117 // Conditional breakpoint which checks global variable.
127 // Conditional breakpoint which checks a parameter.
137 // Conditional breakpoint which checks a local variable.
147 // Multiple conditional breakpoint which the same condition.
160 // Multiple conditional breakpoint which different conditions
    [all...]
debug-clearbreakpoint.js 70 testArguments(dcp, '{"breakpoint":0}', false);
72 testArguments(dcp, '{"breakpoint":3}', false);
73 testArguments(dcp, '{"breakpoint":"xx"}', false);
76 testArguments(dcp, '{"breakpoint":1}', true);
79 testArguments(dcp, '{"breakpoint":1}', false);
  /external/webkit/WebCore/manual-tests/inspector/
debugger-execution-while-paused.html 13 <p>To test, open the Inspector and start a debugging session. Set a break point inside the stepOne() function. Now click the Step One button in the page. The breakpoint should be hit. While paused at the breakpoint click on the Step Two button. You should not see an alert dialog.</p>
debugger-pause-on-else-statements.html 13 Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=21944">Bug 21944: Can't set a breakpoint on the statement after a single line "else"</a>.
18 Also set a breakpoint on the call to test(), and reload. It should break before the test() function is called.
debugger-pause-on-for-in-statements.html 13 Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=22004">Bug 22004: Can't set a breakpoint on the statement after a single line "for"</a>.
18 Also set a breakpoint on the call to test(), and reload. It should break before the test() function is called.
debugger-pause-on-for-statements.html 11 Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=22004">Bug 22004: Can't set a breakpoint on the statement after a single line "for"</a>.
16 Also set a breakpoint on the call to test(), and reload. It should break before the test() function is called.
debugger-step-on-do-while-statements.html 5 /* place breakpoint on next line and click continue */ debugger;
17 Click the button and when the debugger breaks, set a breakpoint on the first line in the loop
24 TEST 1: Click 'continue'. Execution should continue without stopping on the loop breakpoint again.<br>
debugger-step-on-for-in-statements.html 14 /* place breakpoint on next line and click continue */ debugger;
24 Click the button and when the debugger breaks, set a breakpoint on the first line in the loop
31 TEST 1: Click 'continue'. Execution should continue without stopping on the loop breakpoint again.<br>
debugger-step-on-while-statements.html 5 /* place breakpoint on next line and click continue */ debugger;
17 Click the button and when the debugger breaks, set a breakpoint on the first line in the loop
24 TEST 1: Click 'continue'. Execution should continue without stopping on the loop breakpoint again.<br>
debugger-step-on-for-statements.html 5 /* place breakpoint on next line and click continue */ debugger;
14 Click the button and when the debugger breaks, set a breakpoint on the first line in the loop
21 TEST 1: Click 'continue'. Execution should continue without stopping on the loop breakpoint again.<br>
debugger-shortcuts-with-console-opened.html 14 Set a breakpoint inside testFunction() (on the showAlert() call) and press F8. Now click the Test button in the page. The execution should stop on an HTML line containing <b>onclick="testFunction()"</b>. Press F8. The execution should stop on the breakpoint.
bp-in-named-eval-after-reload.html 13 <li><p>In <code>(program) f1.js</code>, set a breakpoint on the first
15 <li><p>In <code>(program) f2.js</code>, set a breakpoint on the first
25 the previous breakpoint markers should be visible
  /bionic/libc/kernel/arch-sh/asm/
kgdb.h 36 #define breakpoint() __asm__ __volatile__("trapa #0x3c") macro
  /dalvik/vm/interp/
Interp.h 44 * Breakpoint implementation.
53 * Recover the opcode that was replaced by a breakpoint.
Interp.c 41 * Initialize global breakpoint structures.
59 * This represents a breakpoint inserted in the instruction stream.
61 * The debugger may ask us to create the same breakpoint multiple times.
62 * We only remove the breakpoint when the last instance is cleared.
68 int setCount; /* #of times this breakpoint was set */
69 } Breakpoint;
78 /* vector of breakpoint structures */
81 Breakpoint* breakpoints;
110 * Lock the breakpoint set.
128 * Unlock the breakpoint set
    [all...]
  /external/qemu/
gdbstub.h 6 /* GDB breakpoint/watchpoint types */
  /external/webkit/WebKit/chromium/src/js/
DebuggerAgent.js 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
    [all...]

Completed in 110 milliseconds

1 2 3 4 5 6 7 8 910