Home
last modified time | relevance | path

Searched refs:breakpoint (Results 1 – 25 of 91) 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.md32 enable a breakpoint at that position in the code:
45 Once the debugger is run, a breakpoint will occur at line 3:
104 every breakpoint, each expression from the watchers list will be evaluated
105 in the current context and displayed immediately before the breakpoint's
124 * `setBreakpoint()`, `sb()`: Set breakpoint on current line
125 * `setBreakpoint(line)`, `sb(line)`: Set breakpoint on specific line
126 * `setBreakpoint('fn()')`, `sb(...)`: Set breakpoint on a first statement in
128 * `setBreakpoint('script.js', 1)`, `sb(...)`: Set breakpoint on first line of
131 breakpoint on first line of `script.js` that only breaks when `num < 4`
133 * `clearBreakpoint('script.js', 1)`, `cb(...)`: Clear breakpoint in `script.js`
[all …]
/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/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/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/freetype/docs/reference/assets/stylesheets/
Dpalette.f1a3b89f.min.css.map1breakpoint\n///\n@function break-select-device($device) {\n $current: $break-devices;\n @for $n …
/third_party/ejdb/
D.gdbinit12 set breakpoint pending on
14 set breakpoint pending auto
/third_party/iowow/
D.gdbinit11 set breakpoint pending on
13 set breakpoint pending auto
/third_party/flutter/flutter/packages/flutter_tools/test/integration.shard/test_data/
Dhot_reload_project.dart46 // breakpoint.
47 // tick 3 = second hot reload warmup reassemble frame (pre breakpoint)
51 print('breakpoint line'); // SCHEDULED BREAKPOINT
/third_party/node/test/sequential/
Dtest-debugger-clear-breakpoints.js34 assert.match(cli.output, /Could not find breakpoint/);
38 assert.match(cli.output, /Could not find breakpoint/);
/third_party/libxml2/
Dxmlmemory.c967 char *breakpoint; in xmlInitMemory() local
982 breakpoint = getenv("XML_MEM_BREAKPOINT"); in xmlInitMemory()
983 if (breakpoint != NULL) { in xmlInitMemory()
984 sscanf(breakpoint, "%ud", &xmlMemStopAtBlock); in xmlInitMemory()
988 breakpoint = getenv("XML_MEM_TRACE"); in xmlInitMemory()
989 if (breakpoint != NULL) { in xmlInitMemory()
990 sscanf(breakpoint, "%p", &xmlMemTraceBlockAt); in xmlInitMemory()
/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/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/flutter/flutter/packages/flutter_tools/test/integration.shard/
Dhot_reload_test.dart78 if (line.contains('The application is paused in the debugger on a breakpoint.')) {
94 await _flutter.hotReload(); // reload triggers code which eventually hits the breakpoint
128 if (line.contains('The application is paused in the debugger on a breakpoint.')) {
132 …if (line.contains('The application is paused in the debugger on a breakpoint; interface might not …

1234