/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/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 299 With a *filename:lineno* argument, clear all the breakpoints at this line. 300 With a space separated list of breakpoint numbers, clear those breakpoints. 305 Disable the breakpoints given as a space separated list of breakpoint 308 breakpoints and can be (re-)enabled. 312 Enable the breakpoints specified. 358 stopping at a breakpoint is not printed. This may be desirable for breakpoints 525 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/tensorflow/tensorflow/core/kernels/data/ |
D | concatenate_dataset_op_test.cc | 78 std::vector<int> breakpoints; member 317 std::vector<int> breakpoints = GetParam().breakpoints; in TEST_P() local 318 for (int breakpoint : breakpoints) { in TEST_P()
|
D | sparse_tensor_slice_dataset_op_test.cc | 71 std::vector<int> breakpoints; member 444 std::vector<int> breakpoints = test_case.breakpoints; in TEST_F() local 476 for (int breakpoint : breakpoints) { in TEST_F()
|
D | tensor_dataset_op_test.cc | 75 std::vector<int> breakpoints; member 488 const std::vector<int> &breakpoints = test_case.breakpoints; in TEST_P() local 489 for (int breakpoint : breakpoints) { in TEST_P()
|
D | tensor_slice_dataset_op_test.cc | 74 std::vector<int> breakpoints; member 524 std::vector<int> breakpoints = test_case.breakpoints; in TEST_F() local 568 for (int breakpoint : breakpoints) { in TEST_F()
|
D | repeat_dataset_op_test.cc | 71 std::vector<int> breakpoints; member 514 std::vector<int> breakpoints = GetParam().breakpoints; in TEST_P() local 515 for (int breakpoint : breakpoints) { in TEST_P()
|
D | take_dataset_op_test.cc | 68 std::vector<int> breakpoints; member 522 const std::vector<int> &breakpoints = test_case.breakpoints; in TEST_P() local 523 for (int breakpoint : breakpoints) { in TEST_P()
|
D | zip_dataset_op_test.cc | 85 std::vector<int> breakpoints; member 317 for (int breakpoint : test_case.breakpoints) { in TEST_P()
|
/external/v8/src/inspector/ |
D | v8-debugger-agent-impl.cc | 489 protocol::DictionaryValue* breakpoints; in setBreakpointByUrl() local 492 breakpoints = in setBreakpointByUrl() 496 breakpoints = getOrCreateObject( in setBreakpointByUrl() 501 breakpoints = getOrCreateObject( in setBreakpointByUrl() 510 if (breakpoints->get(breakpointId)) { in setBreakpointByUrl() 528 breakpoints->setString(breakpointId, condition); in setBreakpointByUrl() 589 protocol::DictionaryValue* breakpoints = nullptr; in removeBreakpoint() local 595 breakpoints = breakpointsByUrl->getObject(selector); in removeBreakpoint() 602 breakpoints = breakpointsByScriptHash->getObject(selector); in removeBreakpoint() 606 breakpoints = m_state->getObject(DebuggerAgentState::breakpointsByRegex); in removeBreakpoint() [all …]
|
/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/python/cpython3/Lib/idlelib/ |
D | pyshell.py | 128 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 288 self.breakpoints = linenumber_list
|
/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
|
D | CREDITS.txt | 24 integration, debugger integration and persistent breakpoints).
|
/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",
|
/external/clang/test/CodeGenObjC/ |
D | debug-property-synth.m | 4 // Setting a breakpoint on a property should create breakpoints in
|
/external/u-boot/doc/ |
D | README.AX25 | 36 - Configurable number of breakpoints: 2/4/8
|
/external/linux-kselftest/android/patches/ |
D | 0002-Compile-breakpoints-and-x86-tests.patch | 4 Subject: [PATCH] Compile breakpoints and x86 tests. Test: make vts
|
/external/linux-kselftest/tools/testing/selftests/ |
D | Makefile | 4 TARGETS += breakpoints
|