Home
last modified time | relevance | path

Searched refs:breakpoints (Results 1 – 25 of 84) sorted by relevance

1234

/external/python/cpython2/Doc/library/
Dbdb.rst11 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 …]
Dpdb.rst16 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,
Ddebug.rst6 step through code, analyze stack frames and set breakpoints etc., and the
Dbisect.rst122 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/
Dbdb.rst11 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 …]
Dpdb.rst16 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.
Ddebug.rst6 step through code, analyze stack frames and set breakpoints etc., and the
Dbisect.rst120 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/
Dconcatenate_dataset_op_test.cc78 std::vector<int> breakpoints; member
317 std::vector<int> breakpoints = GetParam().breakpoints; in TEST_P() local
318 for (int breakpoint : breakpoints) { in TEST_P()
Dsparse_tensor_slice_dataset_op_test.cc71 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()
Dtensor_dataset_op_test.cc75 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()
Dtensor_slice_dataset_op_test.cc74 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()
Drepeat_dataset_op_test.cc71 std::vector<int> breakpoints; member
514 std::vector<int> breakpoints = GetParam().breakpoints; in TEST_P() local
515 for (int breakpoint : breakpoints) { in TEST_P()
Dtake_dataset_op_test.cc68 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()
Dzip_dataset_op_test.cc85 std::vector<int> breakpoints; member
317 for (int breakpoint : test_case.breakpoints) { in TEST_P()
/external/v8/src/inspector/
Dv8-debugger-agent-impl.cc489 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/
Dpdb.doc96 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/
Dpyshell.py128 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/
DPyShell.py129 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
DCREDITS.txt24 integration, debugger integration and persistent breakpoints).
/external/linux-kselftest/
DAndroid.bp62 // 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/
Ddebug-property-synth.m4 // Setting a breakpoint on a property should create breakpoints in
/external/u-boot/doc/
DREADME.AX2536 - Configurable number of breakpoints: 2/4/8
/external/linux-kselftest/android/patches/
D0002-Compile-breakpoints-and-x86-tests.patch4 Subject: [PATCH] Compile breakpoints and x86 tests. Test: make vts
/external/linux-kselftest/tools/testing/selftests/
DMakefile4 TARGETS += breakpoints

1234