Home
last modified time | relevance | path

Searched refs:breakpoint (Results 1 – 25 of 88) sorted by relevance

1234

/third_party/jerryscript/jerry-debugger/
Djerry_client_main.py211 breakpoint = JerryBreakpoint(_line, offset, self)
212 self.lines[_line] = breakpoint
213 self.offsets[offset] = breakpoint
219 result += ','.join([str(breakpoint) for breakpoint in self.lines.values()])
384 for breakpoint in self.active_breakpoint_list.values():
385 result += " %d: %s\n" % (breakpoint.active_index, breakpoint)
388 for breakpoint in self.pending_breakpoint_list.values():
389 result += " %d: %s (pending)\n" % (breakpoint.index, breakpoint)
404 breakpoint = self.active_breakpoint_list[i.active_index]
406 breakpoint.active_index = -1
[all …]
/third_party/jerryscript/tests/debugger/
Ddo_pending_breakpoints.expected4 No breakpoint found, do you want to add a pending breakpoint? (y or [n])
5 Pending breakpoint 1 at :1
7 No breakpoint found, do you want to add a pending breakpoint? (y or [n])
8 Pending breakpoint 2 at f()
17 Stopped at breakpoint:3 <unknown>:1
23 Stopped at breakpoint:4 <unknown>:3 (in f() at line:2, col:1)
Ddo_delete_all.expected10 No breakpoint found, do you want to add a pending breakpoint? (y or [n])
11 Pending breakpoint 4 at do_delete_all:350
13 No breakpoint found, do you want to add a pending breakpoint? (y or [n])
14 Pending breakpoint 5 at do_delete_all:37
Ddo_delete.expected9 No breakpoint found, do you want to add a pending breakpoint? (y or [n])
10 Pending breakpoint 2 at do_delete.js:21
23 Pending breakpoint 2 deleted
31 Stopped at breakpoint:4 tests/debugger/do_delete.js:18
Ddo_scope.expected17 Stopped at breakpoint:1 tests/debugger/do_scope.js:22 (in f() at line:17, col:1)
26 Stopped at breakpoint:2 tests/debugger/do_scope.js:28 (in function() at line:27, col:4)
35 Stopped at breakpoint:3 tests/debugger/do_scope.js:31 (in function() at line:27, col:4)
45 Stopped at breakpoint:4 tests/debugger/do_scope.js:33 (in function() at line:27, col:4)
56 Stopped at breakpoint:5 tests/debugger/do_scope.js:35 (in function() at line:27, col:4)
Ddo_variables.expected31 Stopped at breakpoint:1 tests/debugger/do_variables.js:20 (in function() at line:19, col:10)
58 Stopped at breakpoint:2 tests/debugger/do_variables.js:30 (in f() at line:28, col:1)
87 Stopped at breakpoint:2 tests/debugger/do_variables.js:30 (in f() at line:28, col:1)
89 Stopped at breakpoint:3 tests/debugger/do_variables.js:33 (in f() at line:28, col:1)
108 Stopped at breakpoint:4 tests/debugger/do_variables.js:50 (in function() at line:46, col:4)
Ddo_display.expected14 Stopped at breakpoint:1 tests/debugger/do_display.js:15 (in a() at line:15, col:1)
18 Stopped at breakpoint:2 tests/debugger/do_display.js:16 (in b() at line:16, col:1)
26 Stopped at breakpoint:3 tests/debugger/do_display.js:17 (in c() at line:17, col:1)
54 Stopped at breakpoint:4 tests/debugger/do_display.js:18 (in d() at line:18, col:1)
Ddo_break.expected19 Stopped at breakpoint:1 tests/debugger/do_break.js:51
28 Stopped at breakpoint:2 tests/debugger/do_break.js:36 (in test() at line:20, col:1)
31 Stopped at breakpoint:3 tests/debugger/do_break.js:33 (in f() at line:31, col:3)
/third_party/python/Doc/library/
Dbdb.rst31 such instances since there may be more than one breakpoint per line.
33 When creating a breakpoint, its associated filename should be in canonical
34 form. If a *funcname* is defined, a breakpoint hit will be counted when the
35 first line of that function is executed. A conditional breakpoint always
42 Delete the breakpoint from the list associated to a file/line. If it is
43 the last breakpoint in that position, it also deletes the entry for the
49 Mark the breakpoint as enabled.
54 Mark the breakpoint as disabled.
59 Return a string with all the information about the breakpoint, nicely
62 * The breakpoint number.
[all …]
Dpdb.rst79 The built-in :func:`breakpoint()`, when called with defaults, can be used
133 a breakpoint at a given point in a program, even if the code is not
282 to specify a breakpoint in another file (probably one that hasn't been loaded
283 yet). The file is searched on :data:`sys.path`. Note that each breakpoint
284 is assigned a number to which all the other breakpoint commands refer.
287 true before the breakpoint is honored.
289 Without argument, list all breaks, including for each breakpoint, the number
290 of times that breakpoint has been hit, the current ignore count, and the
295 Temporary breakpoint, which is removed automatically when it is first hit.
301 With a space separated list of breakpoint numbers, clear those breakpoints.
[all …]
/third_party/node/doc/api/
Ddebugger.md34 run until the first breakpoint (specified by a [`debugger`][] statement), set
96 every breakpoint, each expression from the watchers list will be evaluated
97 in the current context and displayed immediately before the breakpoint's
116 * `setBreakpoint()`, `sb()`: Set breakpoint on current line
117 * `setBreakpoint(line)`, `sb(line)`: Set breakpoint on specific line
118 * `setBreakpoint('fn()')`, `sb(...)`: Set breakpoint on a first statement in
120 * `setBreakpoint('script.js', 1)`, `sb(...)`: Set breakpoint on first line of
123 breakpoint on first line of `script.js` that only breaks when `num < 4`
125 * `clearBreakpoint('script.js', 1)`, `cb(...)`: Clear breakpoint in `script.js`
128 It is also possible to set a breakpoint in a file (module) that
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
DDataDrivenTestHelper.java79 boolean breakpoint = false; in test()
89 breakpoint = true; in test()
99 handle(i, breakpoint, comment, arguments); in test()
104 breakpoint = false; in test()
179 …abstract public void handle(int lineNumber, boolean breakpoint, String commentBase, List<String> a… in handle() argument
DLocaleDistanceTest.java145 …public void handle(int lineNumber, boolean breakpoint, String commentBase, List<String> arguments)… in handle() argument
146 if (breakpoint) { in handle()
147 breakpoint = false; // put debugger breakpoint here to break at @debug in test file in handle()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DDataDrivenTestHelper.java78 boolean breakpoint = false; in test()
88 breakpoint = true; in test()
98 handle(i, breakpoint, comment, arguments); in test()
103 breakpoint = false; in test()
178 …abstract public void handle(int lineNumber, boolean breakpoint, String commentBase, List<String> a… in handle() argument
DLocaleDistanceTest.java142 …public void handle(int lineNumber, boolean breakpoint, String commentBase, List<String> arguments)… in handle() argument
143 if (breakpoint) { in handle()
144 breakpoint = false; // put debugger breakpoint here to break at @debug in test file in handle()
/third_party/ltp/testcases/network/rpc/basic_tests/rpc01/
Drpc_server.c16 void breakpoint(void);
95 breakpoint(); in service_request()
116 void breakpoint(void) in breakpoint() function
/third_party/node/test/parallel/
Dtest-debugger-clear-breakpoints.js34 assert.match(cli.output, /Could not find breakpoint/);
38 assert.match(cli.output, /Could not find breakpoint/);
Dtest-debugger-break.js56 assert.doesNotMatch(cli.output, /Could not resolve breakpoint/);
60 assert.doesNotMatch(cli.output, /Could not resolve breakpoint/);
/third_party/node/deps/v8/src/objects/
Ddebug-objects.cc340 BreakPoint breakpoint = BreakPoint::cast(break_point_info->break_points()); in GetBreakPointById() local
341 if (breakpoint.id() == breakpoint_id) { in GetBreakPointById()
342 return handle(breakpoint, isolate); in GetBreakPointById()
348 BreakPoint breakpoint = BreakPoint::cast(array.get(i)); in GetBreakPointById() local
349 if (breakpoint.id() == breakpoint_id) { in GetBreakPointById()
350 return handle(breakpoint, isolate); in GetBreakPointById()
/third_party/node/deps/v8/include/
Djs_protocol.pdl216 # Returns possible locations for breakpoint. scriptId in start and end range locations should be
220 # Start of range to search possible breakpoint locations in.
222 # End of range to search possible breakpoint locations in (excluding). When not specified, end
228 # List of the possible breakpoint locations.
266 # Removes JavaScript breakpoint.
334 # Sets JavaScript breakpoint at a given location.
337 # Location to set breakpoint in.
339 # Expression to use as a breakpoint condition. When specified, debugger will only stop on the
340 # breakpoint if this expression evaluates to true.
343 # Id of the created breakpoint for further reference.
[all …]
/third_party/jerryscript/docs/
D07.DEBUGGER.md30 information (e.g. line index of each possible breakpoint location)
57 the first possible breakpoint location. The effect is the
156 Stops execution at the next available breakpoint if a remote
158 a breakpoint. The engine will stop regardless the breakpoint
197 If the engine would stop at the next available breakpoint it
/third_party/python/Lib/test/
Dtest_gdb.py146 breakpoint=BREAKPOINT_FN, argument
174 'break %s' % breakpoint,
270 gdb_output = self.get_stack_trace(source, breakpoint=BREAKPOINT_FN,
676 breakpoint='builtin_id',
911 breakpoint=func_name,
922 breakpoint=func_name,
/third_party/node/deps/v8/tools/v8windbg/
DREADME.md102 lets d8 run until it hits a breakpoint, and then checks the output of a few `dx`
122 Set a breakpoint in this second session for when the extension initializes, e.g.
132 should trigger the breakpoint.
136 Note: For D8, the below is a good breakpoint to set just before any script is
/third_party/mbedtls/tests/scripts/
Dtest_zeroize.gdb23 # breakpoint at the last return statement in main(). When the breakpoint is
/third_party/skia/third_party/externals/swiftshader/docs/
DVulkanShaderDebugging.md35 You can use the following function breakpoint names to set a breakpoint on the entry to all shaders…

1234