/third_party/skia/third_party/externals/swiftshader/src/Vulkan/Debug/ |
D | File.cpp | 37 std::unordered_set<int> breakpoints GUARDED_BY(breakpointMutex); 47 breakpoints.clear(); in clearBreakpoints() 53 breakpoints.emplace(line); in addBreakpoint() 59 return breakpoints.count(line) > 0; in hasBreakpoint() 65 return breakpoints; in getBreakpoints()
|
D | Server.cpp | 105 for(auto const &reqBP : req.breakpoints) in Impl() 114 response.breakpoints.emplace_back(std::move(resBP)); in Impl() 119 for(auto const &reqBP : req.breakpoints) in Impl() 134 if(req.breakpoints.has_value()) in Impl() 136 auto const &breakpoints = req.breakpoints.value(); in Impl() local 137 numBreakpoints = breakpoints.size(); in Impl() 144 auto &reqBP = breakpoints[i]; in Impl() 154 response.breakpoints.push_back(respBP); in Impl() 163 lines.reserve(breakpoints.size()); in Impl() 164 for(auto const &bp : breakpoints) in Impl() [all …]
|
/third_party/node/deps/v8/src/wasm/ |
D | wasm-debug.cc | 224 int DeadBreakpoint(WasmFrame* frame, base::Vector<const int> breakpoints) { in DeadBreakpoint() argument 228 if (std::binary_search(breakpoints.begin(), breakpoints.end(), offset)) { in DeadBreakpoint() 236 int DeadBreakpoint(int func_index, base::Vector<const int> breakpoints, in DeadBreakpoint() argument 242 return DeadBreakpoint(wasm_frame, breakpoints); in DeadBreakpoint() 342 std::vector<int>& breakpoints = in SetBreakpoint() local 345 std::lower_bound(breakpoints.begin(), breakpoints.end(), offset); in SetBreakpoint() 346 if (insertion_point != breakpoints.end() && *insertion_point == offset) { in SetBreakpoint() 350 breakpoints.insert(insertion_point, offset); in SetBreakpoint() 376 std::set<int> breakpoints; in FindAllBreakpoints() local 380 for (int offset : it->second) breakpoints.insert(offset); in FindAllBreakpoints() [all …]
|
/third_party/jerryscript/tests/debugger/ |
D | do_pending_breakpoints.expected | 10 === Pending breakpoints === 14 out: pending-breakpoints 19 === Active breakpoints ===
|
D | do_delete.expected | 16 === Active breakpoints === 20 === Pending breakpoints === 27 === Active breakpoints ===
|
D | do_delete_all.expected | 16 === Active breakpoints === 20 === Pending breakpoints ===
|
D | do_break.expected | 11 === Active breakpoints === 23 === Active breakpoints ===
|
D | do_list.expected | 8 === Active breakpoints ===
|
/third_party/python/Doc/library/ |
D | bdb.rst | 11 The :mod:`bdb` module handles basic debugger functions, like setting breakpoints 25 This class implements temporary breakpoints, ignore counts, disabling and 167 if they want to redefine the definition of stopping and breakpoints. 243 Stop only at breakpoints or when finished. If there are no breakpoints, 253 breakpoints. These methods return a string containing an error message if 264 Delete the breakpoints in *filename* and *lineno*. If none were set, an 275 Delete all breakpoints in *filename*. If none were set, an error message 280 Delete all existing breakpoints. 297 Return all breakpoints for *lineno* in *filename*, or an empty list if 302 Return all breakpoints in *filename*, or an empty list if none are set. [all …]
|
D | pdb.rst | 16 programs. It supports setting (conditional) breakpoints and single stepping at 57 restarting preserves pdb's state (such as breakpoints) and in most cases is more 107 set breakpoints and type :pdbcmd:`continue`, or you can step through the 300 With a *filename:lineno* argument, clear all the breakpoints at this line. 301 With a space separated list of breakpoint numbers, clear those breakpoints. 306 Disable the breakpoints given as a space separated list of breakpoint 309 breakpoints and can be (re-)enabled. 313 Enable the breakpoints specified. 359 stopping at a breakpoint is not printed. This may be desirable for breakpoints 526 History, breakpoints, actions and debugger options are preserved.
|
D | debug.rst | 6 step through code, analyze stack frames and set breakpoints etc., and the
|
D | bisect.rst | 187 based on a set of ordered numeric breakpoints: 90 and up is an 'A', 80 to 89 is 190 >>> def grade(score, breakpoints=[60, 70, 80, 90], grades='FDCBA'): 191 ... i = bisect(breakpoints, score)
|
/third_party/node/deps/v8/src/inspector/ |
D | v8-debugger-agent-impl.cc | 561 protocol::DictionaryValue* breakpoints; in setBreakpointByUrl() local 564 breakpoints = in setBreakpointByUrl() 568 breakpoints = getOrCreateObject( in setBreakpointByUrl() 573 breakpoints = getOrCreateObject( in setBreakpointByUrl() 581 if (breakpoints->get(breakpointId)) { in setBreakpointByUrl() 601 breakpoints->setString(breakpointId, condition); in setBreakpointByUrl() 666 protocol::DictionaryValue* breakpoints = getOrCreateObject( in setInstrumentationBreakpoint() local 668 if (breakpoints->get(breakpointId)) { in setInstrumentationBreakpoint() 672 breakpoints->setBoolean(breakpointId, true); in setInstrumentationBreakpoint() 684 protocol::DictionaryValue* breakpoints = nullptr; in removeBreakpoint() local [all …]
|
/third_party/node/deps/v8/src/wasm/baseline/ |
D | liftoff-compiler.h | 59 base::Vector<const int> breakpoints = {}; member 75 SETTER(breakpoints) in SETTER()
|
/third_party/jerryscript/docs/ |
D | 07.DEBUGGER.md | 59 breakpoints right before the meaningful part of the execution 199 breakpoints. This function effectively negates the effect of 239 Enables or disables stopping at breakpoints. When stopping is 240 disabled all breakpoints are ignored including user enabled 241 breakpoints. This allows hidden execution of ECMAScript code. 250 - `enable_stop_at_breakpoint` - enable (=`true`) or disable (=`false`) stopping at breakpoints
|
/third_party/python/Lib/idlelib/ |
D | pyshell.py | 143 self.breakpoints = [] 188 self.breakpoints.index(lineno) 190 self.breakpoints.append(lineno) 214 self.breakpoints.remove(lineno) 226 if self.breakpoints: 232 self.breakpoints = [] 258 breaks = self.breakpoints 271 breaks = self.breakpoints 304 self.breakpoints = linenumber_list
|
D | HISTORY.txt | 146 - debugger (not complete, but you can set breakpoints, view and step) 238 filenames for breakpoints, so these actually work. (There's still a 239 lot of work to be done to the management of breakpoints in the
|
D | CREDITS.txt | 24 integration, debugger integration and persistent breakpoints).
|
/third_party/skia/third_party/externals/swiftshader/docs/ |
D | VulkanShaderDebugging.md | 14 …established, before allowing `vkCreateDevice()` to return. This allows breakpoints to be set befor… 33 # Shader entry breakpoints
|
/third_party/node/test/parallel/ |
D | test-debugger-preserve-breaks.js | 22 assert.match(cli.output, /No breakpoints yet/);
|
D | test-debugger-set-context-line-number.mjs | 22 // Stepping through breakpoints.
|
D | test-debugger-watchers.mjs | 17 // Stepping through breakpoints.
|
/third_party/node/doc/api/ |
D | inspector.md | 148 execution is suspended (through breakpoints, for example): 183 enabled agents or configured breakpoints.
|
/third_party/node/deps/v8/src/runtime/ |
D | runtime-wasm.cc | 613 Handle<FixedArray> breakpoints; in RUNTIME_FUNCTION() local 616 .ToHandle(&breakpoints)) { in RUNTIME_FUNCTION() 622 isolate->debug()->OnDebugBreak(breakpoints, step_action); in RUNTIME_FUNCTION()
|
/third_party/python/Lib/test/ |
D | test_bisect.py | 360 def grade(score, breakpoints=[60, 70, 80, 90], grades='FDCBA'): argument 361 i = self.module.bisect(breakpoints, score)
|