/external/swiftshader/src/Vulkan/Debug/ |
D | File.cpp | 37 std::unordered_set<int> breakpoints; // guarded by breakpointMutex member in __anon8a0cd3cd0111::FileBase 47 breakpoints.clear(); in clearBreakpoints() 53 breakpoints.emplace(line); in addBreakpoint() 59 return breakpoints.count(line) > 0; in hasBreakpoint()
|
D | Server.cpp | 105 for(auto const &bp : req.breakpoints) in Impl() 109 response.breakpoints.push_back({}); in Impl() 121 if(req.breakpoints.has_value()) in Impl() 123 auto const &breakpoints = req.breakpoints.value(); in Impl() local 124 numBreakpoints = breakpoints.size(); in Impl() 128 for(auto const &bp : breakpoints) in Impl() 137 lines.reserve(breakpoints.size()); in Impl() 138 for(auto const &bp : breakpoints) in Impl() 153 response.breakpoints.push_back(bp); in Impl()
|
/external/v8/src/wasm/ |
D | wasm-debug.cc | 365 int DeadBreakpoint(int func_index, std::vector<int>& breakpoints, in DeadBreakpoint() argument 372 if (std::binary_search(breakpoints.begin(), breakpoints.end(), offset)) { in DeadBreakpoint() 435 std::vector<int>& breakpoints = in SetBreakpoint() local 438 std::lower_bound(breakpoints.begin(), breakpoints.end(), offset); in SetBreakpoint() 439 if (insertion_point != breakpoints.end() && *insertion_point == offset) { in SetBreakpoint() 443 breakpoints.insert(insertion_point, offset); in SetBreakpoint() 469 std::set<int> breakpoints; in FindAllBreakpoints() local 473 for (int offset : it->second) breakpoints.insert(offset); in FindAllBreakpoints() 475 return {breakpoints.begin(), breakpoints.end()}; in FindAllBreakpoints() 478 void UpdateBreakpoints(int func_index, Vector<int> breakpoints, in UpdateBreakpoints() argument [all …]
|
/external/python/cpython3/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 108 set breakpoints and type :pdbcmd:`continue`, or you can step through the 301 With a *filename:lineno* argument, clear all the breakpoints at this line. 302 With a space separated list of breakpoint numbers, clear those breakpoints. 307 Disable the breakpoints given as a space separated list of breakpoint 310 breakpoints and can be (re-)enabled. 314 Enable the breakpoints specified. 360 stopping at a breakpoint is not printed. This may be desirable for breakpoints 527 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 | 120 based on a set of ordered numeric breakpoints: 90 and up is an 'A', 80 to 89 is 123 >>> def grade(score, breakpoints=[60, 70, 80, 90], grades='FDCBA'): 124 ... i = bisect(breakpoints, score)
|
/external/python/cpython2/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 159 if they want to redefine the definition of stopping and breakpoints. 235 Stop only at breakpoints or when finished. If there are no breakpoints, 245 breakpoints. These methods return a string containing an error message if 256 Delete the breakpoints in *filename* and *lineno*. If none were set, an 267 Delete all breakpoints in *filename*. If none were set, an error message 272 Delete all existing breakpoints. 280 Return all breakpoints for *lineno* in *filename*, or an empty list if 285 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 52 restarting preserves pdb's state (such as breakpoints) and in most cases is more 91 debugger prompt appears before any code is executed; you can set breakpoints and 246 With a *filename:lineno* argument, clear all the breakpoints at this line. 247 With a space separated list of breakpoint numbers, clear those breakpoints. 251 Disables the breakpoints given as a space separated list of breakpoint numbers. 253 unlike clearing a breakpoint, it remains in the list of breakpoints and can be 257 Enables the breakpoints specified. 297 stopping at a breakpoint is not printed. This may be desirable for breakpoints 390 with "shlex" and the result is used as the new sys.argv. History, breakpoints,
|
D | debug.rst | 6 step through code, analyze stack frames and set breakpoints etc., and the
|
D | bisect.rst | 122 based on a set of ordered numeric breakpoints: 90 and up is an 'A', 80 to 89 is 125 >>> def grade(score, breakpoints=[60, 70, 80, 90], grades='FDCBA'): 126 i = bisect(breakpoints, score)
|
/external/v8/src/inspector/ |
D | v8-debugger-agent-impl.cc | 534 protocol::DictionaryValue* breakpoints; in setBreakpointByUrl() local 537 breakpoints = in setBreakpointByUrl() 541 breakpoints = getOrCreateObject( in setBreakpointByUrl() 546 breakpoints = getOrCreateObject( in setBreakpointByUrl() 554 if (breakpoints->get(breakpointId)) { in setBreakpointByUrl() 573 breakpoints->setString(breakpointId, condition); in setBreakpointByUrl() 634 protocol::DictionaryValue* breakpoints = getOrCreateObject( in setInstrumentationBreakpoint() local 636 if (breakpoints->get(breakpointId)) { in setInstrumentationBreakpoint() 640 breakpoints->setBoolean(breakpointId, true); in setInstrumentationBreakpoint() 652 protocol::DictionaryValue* breakpoints = nullptr; in removeBreakpoint() local [all …]
|
/external/tensorflow/tensorflow/core/kernels/data/ |
D | shuffle_dataset_op_test.cc | 456 std::vector<int> breakpoints; member 526 const std::vector<int>& breakpoints = test_case.breakpoints; in TEST_P() local 527 for (int breakpoint : breakpoints) { in TEST_P()
|
D | tensor_dataset_op_test.cc | 235 const std::vector<int>& breakpoints = test_case.breakpoints; in TEST_P() local 237 for (int breakpoint : breakpoints) { in TEST_P()
|
D | tensor_slice_dataset_op_test.cc | 275 const std::vector<int>& breakpoints = test_case.breakpoints; in TEST_P() local 276 for (int breakpoint : breakpoints) { in TEST_P()
|
D | repeat_dataset_op_test.cc | 319 std::vector<int> breakpoints = GetParam().breakpoints; in TEST_P() local 320 for (int breakpoint : breakpoints) { in TEST_P()
|
D | dataset_test_base.h | 442 IteratorSaveAndRestoreTestCase(T dataset_params, std::vector<int> breakpoints, 446 breakpoints(std::move(breakpoints)), in dataset_params() 451 std::vector<int> breakpoints; member 593 const std::vector<int>& breakpoints, bool compare_order); 926 test_case.expected_outputs, test_case.breakpoints, \
|
/external/python/cpython2/Lib/ |
D | pdb.doc | 96 breakpoints. Without argument, clear all breaks (but first 100 Disables the breakpoints given as a space separated list of 103 breakpoint, it remains in the list of breakpoints and can be 107 Enables the breakpoints specified. 141 History, breakpoints, actions and debugger options are preserved.
|
/external/tensorflow/tensorflow/python/autograph/g3doc/reference/ |
D | debugging.md | 10 function. Non-code elements, such as breakpoints, do not transfer to the 13 You can step through the generated code and set breakpoints while debugging. 14 The converted function is cached, and breakpoints should persist for the
|
/external/v8/src/wasm/baseline/ |
D | liftoff-compiler.h | 59 Vector<int> breakpoints = {}, std::unique_ptr<DebugSideTable>* = nullptr,
|
/external/python/cpython3/Lib/idlelib/ |
D | pyshell.py | 130 self.breakpoints = [] 175 self.breakpoints.index(lineno) 177 self.breakpoints.append(lineno) 201 self.breakpoints.remove(lineno) 213 if self.breakpoints: 219 self.breakpoints = [] 245 breaks = self.breakpoints 258 breaks = self.breakpoints 291 self.breakpoints = linenumber_list
|
/external/swiftshader/docs/ |
D | VulkanShaderDebugging.md | 14 …established, before allowing `vkCreateDevice()` to return. This allows breakpoints to be set befor… 33 # Shader entry breakpoints
|
/external/python/cpython2/Lib/idlelib/ |
D | PyShell.py | 129 self.breakpoints = [] 172 self.breakpoints.index(lineno) 174 self.breakpoints.append(lineno) 198 self.breakpoints.remove(lineno) 210 if self.breakpoints: 216 self.breakpoints = [] 242 breaks = self.breakpoints 255 breaks = self.breakpoints 287 self.breakpoints = linenumber_list
|
/external/clang/test/CodeGenObjC/ |
D | debug-property-synth.m | 4 // Setting a breakpoint on a property should create breakpoints in
|
/external/linux-kselftest/ |
D | Android.bp | 62 // breakpoints test 65 relative_install_path: "linux-kselftest/breakpoints", 67 "tools/testing/selftests/breakpoints/step_after_suspend_test.c", 76 "tools/testing/selftests/breakpoints/breakpoint_test_arm64.c", 81 "tools/testing/selftests/breakpoints/breakpoint_test.c",
|