Home
last modified time | relevance | path

Searched refs:breakpoints (Results 1 - 12 of 12) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/src/Vulkan/Debug/
H A 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()
H A 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()
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 in Impl()
[all...]
/third_party/node/deps/v8/src/wasm/
H A Dwasm-debug.cc220 // If the frame position is not in the list of breakpoints, return that
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()
271 // Recompile the function with Liftoff, setting the new breakpoints. in RecompileLiftoffWithBreakpoints()
330 // Hold the mutex while modifying breakpoints, to ensure consistency when in SetBreakpoint()
331 // multiple isolates set/remove breakpoints at the same time. in SetBreakpoint()
337 // Get the set of previously set breakpoints, t in SetBreakpoint()
342 std::vector<int>& breakpoints = SetBreakpoint() local
376 std::set<int> breakpoints; FindAllBreakpoints() local
385 UpdateBreakpoints(int func_index, base::Vector<int> breakpoints, Isolate* isolate, StackFrameId stepping_frame, int dead_breakpoint) UpdateBreakpoints() argument
429 std::vector<int> breakpoints = FindAllBreakpoints(func_index); ClearStepping() local
464 std::vector<int>& breakpoints = RemoveBreakpoint() local
[all...]
/third_party/node/deps/v8/src/inspector/
H A Dv8-debugger-agent-impl.cc68 // Limit the number of breakpoints returned, as we otherwise may exceed
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 in setInstrumentationBreakpoint()
684 protocol::DictionaryValue* breakpoints = nullptr; removeBreakpoint() local
1726 protocol::DictionaryValue* breakpoints = setScriptInstrumentationBreakpointIfNeeded() local
[all...]
/third_party/node/deps/v8/src/wasm/baseline/
H A Dliftoff-compiler.h59 base::Vector<const int> breakpoints = {}; member
75 SETTER(breakpoints)
H A Dliftoff-compiler.cc495 base::Vector<const int> breakpoints = {}, in LiftoffCompiler()
510 next_breakpoint_ptr_(breakpoints.begin()),
511 next_breakpoint_end_(breakpoints.end()),
516 if (breakpoints.empty()) {
1062 // Skip unreachable breakpoints. in EmitDebuggingInfo()
6529 // breakpoint, and a pointer after the list of breakpoints as end marker.
6531 // function for stepping by flooding it with breakpoints.
6606 for_debugging, func_index, compiler_options.breakpoints,
6676 base::Vector<const int> breakpoints =
6685 breakpoints);
[all...]
/third_party/python/Lib/idlelib/
H A Dpyshell.py131 "Regular text edit window in IDLE, supports breakpoints"
134 self.breakpoints = []
142 idleConf.userdir, 'breakpoints.lst')
143 # whenever a file is changed, restore breakpoints
179 self.breakpoints.index(lineno)
181 self.breakpoints.append(lineno)
205 self.breakpoints.remove(lineno)
217 if self.breakpoints:
223 self.breakpoints = []
232 "Save breakpoints whe
[all...]
H A Ddebugger.py367 "Load PyShellEditorWindow breakpoints into subprocess debugger"
371 for lineno in editwin.breakpoints:
/third_party/node/deps/v8/src/runtime/
H A Druntime-wasm.cc613 Handle<FixedArray> breakpoints; in RUNTIME_FUNCTION() local
616 .ToHandle(&breakpoints)) { in RUNTIME_FUNCTION()
621 // We hit one or several breakpoints. Notify the debug listeners. in RUNTIME_FUNCTION()
622 isolate->debug()->OnDebugBreak(breakpoints, step_action); in RUNTIME_FUNCTION()
/third_party/node/lib/internal/debugger/
H A Dinspect_repl.js87 breakpoints List all known breakpoints
719 print('No breakpoints yet');
877 print(`${newBreakpoints.length} breakpoints restored.`);
1000 get breakpoints() {
/third_party/python/Lib/test/
H A Dtest_bisect.py366 def grade(score, breakpoints=[60, 70, 80, 90], grades='FDCBA'):
367 i = self.module.bisect(breakpoints, score)
/third_party/skia/third_party/externals/microhttpd/doc/
H A Dtexinfo.tex728 % page at this \penalty, if there are no other feasible breakpoints in
6047 \raggedbottom % Worry more about breakpoints than the bottom.

Completed in 27 milliseconds