Home
last modified time | relevance | path

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

123

/third_party/skia/third_party/externals/swiftshader/src/Vulkan/Debug/
DFile.cpp37 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()
DServer.cpp105 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/jerryscript/tests/debugger/
Ddo_pending_breakpoints.expected10 === Pending breakpoints ===
14 out: pending-breakpoints
19 === Active breakpoints ===
Ddo_delete.expected16 === Active breakpoints ===
20 === Pending breakpoints ===
27 === Active breakpoints ===
Ddo_delete_all.expected16 === Active breakpoints ===
20 === Pending breakpoints ===
Ddo_break.expected11 === Active breakpoints ===
23 === Active breakpoints ===
Ddo_list.expected8 === Active breakpoints ===
/third_party/node/deps/npm/docs/src/components/home/
DTerminal.js36 @media screen and (min-width: ${(props) => props.theme.breakpoints.TABLET}) {
45 @media screen and (min-width: ${(props) => props.theme.breakpoints.TABLET}) {
87 @media screen and (min-width: ${(props) => props.theme.breakpoints.TABLET}) {
DWindows.js12 @media screen and (min-width: ${(props) => props.theme.breakpoints.TABLET}) {
/third_party/boost/tools/build/src/engine/
Ddebugger.cpp48 static struct breakpoint * breakpoints; variable
265breakpoints = ( struct breakpoint * )realloc( breakpoints, new_capacity * sizeof( struct breakpoin… in add_breakpoint()
268 breakpoints[ num_breakpoints++ ] = elem; in add_breakpoint()
303 if ( breakpoints[ i ].bound_file == NULL && is_same_file( breakpoints[ i ].file, file ) ) in handle_line_breakpoint()
305 breakpoints[ i ].bound_file = object_copy( file ); in handle_line_breakpoint()
307 if ( breakpoints[ i ].status == BREAKPOINT_ENABLED && in handle_line_breakpoint()
308 breakpoints[ i ].bound_file != NULL && in handle_line_breakpoint()
309 object_equal( breakpoints[ i ].bound_file, file ) && in handle_line_breakpoint()
310 breakpoints[ i ].line == line ) in handle_line_breakpoint()
646 if ( breakpoints[ id ].status == BREAKPOINT_DELETED ) in debug_child_disable()
[all …]
/third_party/node/deps/npm/docs/src/
Dtheme.js1 export const breakpoints = { variable
23 breakpoints: { property
/third_party/python/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
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.
Ddebug.rst6 step through code, analyze stack frames and set breakpoints etc., and the
/third_party/node/deps/npm/docs/src/components/
Dnavbar.js48 @media screen and (min-width: ${(props) => props.theme.breakpoints.TABLET}) {
73 @media screen and (min-width: ${(props) => props.theme.breakpoints.TABLET}) {
DSidebar.js17 @media screen and (min-width: ${(props) => props.theme.breakpoints.TABLET}) {
DMobileSidebar.js20 @media screen and (min-width: ${(props) => props.theme.breakpoints.TABLET}) {
/third_party/jerryscript/docs/
D07.DEBUGGER.md59 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/flutter/flutter/packages/flutter_tools/templates/app/android.tmpl/app/src/profile/
DAndroidManifest.xml.tmpl4 to allow setting breakpoints, to provide hot reload, etc.
/third_party/flutter/flutter/packages/flutter_tools/templates/app/android.tmpl/app/src/debug/
DAndroidManifest.xml.tmpl4 to allow setting breakpoints, to provide hot reload, etc.
/third_party/quickjs/
Ddebugger.c206 static void DBG_SetBreakpoints(DebuggerInfo *debuggerInfo, JSValue breakpoints) in DBG_SetBreakpoints() argument
212 JSValue filename = JS_GetPropertyStr(debuggerInfo->cx, breakpoints, "path"); in DBG_SetBreakpoints()
219 JSValue pathData = JS_GetPropertyStr(debuggerInfo->cx, debuggerInfo->breakpoints, path); in DBG_SetBreakpoints()
226 JS_SetPropertyStr(debuggerInfo->cx, debuggerInfo->breakpoints, path, pathData); in DBG_SetBreakpoints()
230 JSValue jsBreakpoints = JS_GetPropertyStr(debuggerInfo->cx, breakpoints, "breakpoints"); in DBG_SetBreakpoints()
845 debuggerInfo->breakpoints = JS_NewObject(cx); in DBG_Entry()
934 JS_FreeValue(cx, debuggerInfo->breakpoints); in DBG_FreeSources()
Ddebugger.h91 JSValue breakpoints; member
/third_party/skia/third_party/externals/swiftshader/docs/
DVulkanShaderDebugging.md14 …established, before allowing `vkCreateDevice()` to return. This allows breakpoints to be set befor…
33 # Shader entry breakpoints
/third_party/python/Lib/idlelib/
Dpyshell.py143 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
/third_party/node/test/sequential/
Dtest-debugger-preserve-breaks.js27 assert.match(cli.output, /No breakpoints yet/);

123