Home
last modified time | relevance | path

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

/dports/lang/v8/v8-9.6.180.12/src/inspector/
H A Dv8-debugger-script.h51 class V8DebuggerScript {
54 static std::unique_ptr<V8DebuggerScript> Create(
58 virtual ~V8DebuggerScript();
59 V8DebuggerScript(const V8DebuggerScript&) = delete;
60 V8DebuggerScript& operator=(const V8DebuggerScript&) = delete;
111 V8DebuggerScript(v8::Isolate*, String16 id, String16 url,
H A Dv8-debugger-script.cc89 class ActualScript : public V8DebuggerScript {
90 friend class V8DebuggerScript;
96 : V8DebuggerScript(isolate, String16::fromInteger(script->Id()), in ActualScript()
333 m_language = V8DebuggerScript::Language::JavaScript; in Initialize()
336 m_language = V8DebuggerScript::Language::WebAssembly; in Initialize()
375 std::unique_ptr<V8DebuggerScript> V8DebuggerScript::Create( in Create()
382 V8DebuggerScript::V8DebuggerScript(v8::Isolate* isolate, String16 id, in V8DebuggerScript() function in v8_inspector::V8DebuggerScript
389 V8DebuggerScript::~V8DebuggerScript() = default;
391 void V8DebuggerScript::setSourceURL(const String16& sourceURL) { in setSourceURL()
399 void V8DebuggerScript::removeWasmBreakpoint(int id) { in removeWasmBreakpoint()
H A Dv8-debugger-agent-impl.h23 class V8DebuggerScript; variable
157 void didParseSource(std::unique_ptr<V8DebuggerScript>, bool success);
166 void ScriptCollected(const V8DebuggerScript* script);
192 const std::vector<V8DebuggerScript*>& scripts);
203 void setScriptInstrumentationBreakpointIfNeeded(V8DebuggerScript* script);
209 std::unordered_map<String16, std::unique_ptr<V8DebuggerScript>>;
H A Dv8-debugger-agent-impl.cc210 if (sourceOffset == V8DebuggerScript::kNoOffset) return; in adjustBreakpointLocation()
706 std::vector<V8DebuggerScript*> scripts; in removeBreakpoint()
709 V8DebuggerScript* script = scriptIter.second.get(); in removeBreakpoint()
719 const std::vector<V8DebuggerScript*>& scripts) { in removeBreakpointImpl()
814 V8DebuggerScript* script = it->second.get(); in continueToLocation()
931 V8DebuggerScript* script = scriptIterator->second.get(); in setBreakpointImpl()
1520 case V8DebuggerScript::Language::WebAssembly: in getScriptLanguage()
1522 case V8DebuggerScript::Language::JavaScript: in getScriptLanguage()
1546 const V8DebuggerScript& script) { in getDebugSymbols()
1710 V8DebuggerScript* scriptRef) { in setScriptInstrumentationBreakpointIfNeeded()
[all …]
H A Dv8-debugger.h69 V8DebuggerScript* script,
77 std::vector<std::unique_ptr<V8DebuggerScript>> getCompiledScripts(
H A Dv8-debugger.cc136 std::vector<std::unique_ptr<V8DebuggerScript>> V8Debugger::getCompiledScripts( in getCompiledScripts()
138 std::vector<std::unique_ptr<V8DebuggerScript>> result; in getCompiledScripts()
150 result.push_back(V8DebuggerScript::Create(m_isolate, script, false, agent, in getCompiledScripts()
351 int targetContextGroupId, V8DebuggerScript* script, in continueToLocation()
570 V8DebuggerScript::Create(isolate, script, is_live_edited, agent, in ScriptCompiled()
/dports/www/node10/node-v10.24.1/deps/v8/src/inspector/
H A Dv8-debugger-script.h46 class V8DebuggerScript {
48 static std::unique_ptr<V8DebuggerScript> Create(
51 static std::unique_ptr<V8DebuggerScript> CreateWasm(
56 virtual ~V8DebuggerScript();
93 V8DebuggerScript(v8::Isolate*, String16 id, String16 url);
105 DISALLOW_COPY_AND_ASSIGN(V8DebuggerScript);
H A Dv8-debugger-script.cc109 class ActualScript : public V8DebuggerScript {
110 friend class V8DebuggerScript;
288 class WasmVirtualScript : public V8DebuggerScript {
289 friend class V8DebuggerScript;
295 : V8DebuggerScript(isolate, std::move(id), std::move(url)), in WasmVirtualScript()
407 std::unique_ptr<V8DebuggerScript> V8DebuggerScript::Create( in Create()
414 std::unique_ptr<V8DebuggerScript> V8DebuggerScript::CreateWasm( in CreateWasm()
423 V8DebuggerScript::V8DebuggerScript(v8::Isolate* isolate, String16 id, in V8DebuggerScript() function in v8_inspector::V8DebuggerScript
427 V8DebuggerScript::~V8DebuggerScript() {} in ~V8DebuggerScript()
429 void V8DebuggerScript::setSourceURL(const String16& sourceURL) { in setSourceURL()
[all …]
H A Dv8-debugger-agent-impl.h21 class V8DebuggerScript; variable
147 void didParseSource(std::unique_ptr<V8DebuggerScript>, bool success);
186 protocol::HashMap<String16, std::unique_ptr<V8DebuggerScript>>;
H A Dv8-debugger.h68 V8DebuggerScript* script,
77 std::vector<std::unique_ptr<V8DebuggerScript>>&);
H A Dv8-debugger-agent-impl.cc159 String16 breakpointHint(const V8DebuggerScript& script, int lineNumber, in breakpointHint()
162 if (offset == V8DebuggerScript::kNoOffset) return String16(); in breakpointHint()
174 void adjustBreakpointLocation(const V8DebuggerScript& script, in adjustBreakpointLocation()
181 if (sourceOffset == V8DebuggerScript::kNoOffset) return; in adjustBreakpointLocation()
383 std::vector<std::unique_ptr<V8DebuggerScript>> compiledScripts; in enableImpl()
491 static bool matches(V8InspectorImpl* inspector, const V8DebuggerScript& script, in matches()
755 V8DebuggerScript* script = it->second.get(); in continueToLocation()
841 V8DebuggerScript* script = scriptIterator->second.get(); in setBreakpointImpl()
1426 std::unique_ptr<V8DebuggerScript> script, bool success) { in didParseSource()
1456 V8DebuggerScript* scriptRef = scriptIterator->second.get(); in didParseSource()
H A Dv8-debugger.cc222 std::vector<std::unique_ptr<V8DebuggerScript>>& result) { in getCompiledScripts()
230 result.push_back(V8DebuggerScript::Create(m_isolate, script, false, in getCompiledScripts()
237 result.push_back(V8DebuggerScript::Create(m_isolate, script, false, in getCompiledScripts()
390 int targetContextGroupId, V8DebuggerScript* script, in continueToLocation()
554 V8DebuggerScript::Create(isolate, script, is_live_edited, client), in ScriptCompiled()
H A Dwasm-translation.cc253 std::unique_ptr<V8DebuggerScript> fake_script = in AddFakeScript()
254 V8DebuggerScript::CreateWasm(isolate, translation, script_.Get(isolate), in AddFakeScript()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/inspector/
H A Dv8-debugger-script.cc89 class ActualScript : public V8DebuggerScript {
90 friend class V8DebuggerScript;
96 : V8DebuggerScript(isolate, String16::fromInteger(script->Id()), in ActualScript()
285 m_language = V8DebuggerScript::Language::WebAssembly; in Initialize()
287 m_language = V8DebuggerScript::Language::JavaScript; in Initialize()
325 std::unique_ptr<V8DebuggerScript> V8DebuggerScript::Create( in Create()
332 V8DebuggerScript::V8DebuggerScript(v8::Isolate* isolate, String16 id, in V8DebuggerScript() function in v8_inspector::V8DebuggerScript
336 V8DebuggerScript::~V8DebuggerScript() = default;
338 void V8DebuggerScript::setSourceURL(const String16& sourceURL) { in setSourceURL()
345 bool V8DebuggerScript::setBreakpoint(const String16& condition, in setBreakpoint()
[all …]
H A Dv8-debugger-script.h47 class V8DebuggerScript {
50 static std::unique_ptr<V8DebuggerScript> Create(
54 virtual ~V8DebuggerScript();
98 V8DebuggerScript(v8::Isolate*, String16 id, String16 url);
110 DISALLOW_COPY_AND_ASSIGN(V8DebuggerScript);
H A Dv8-debugger-agent-impl.h23 class V8DebuggerScript; variable
152 void didParseSource(std::unique_ptr<V8DebuggerScript>, bool success);
160 void ScriptCollected(const V8DebuggerScript* script);
181 const std::vector<V8DebuggerScript*>& scripts);
192 void setScriptInstrumentationBreakpointIfNeeded(V8DebuggerScript* script);
195 std::unordered_map<String16, std::unique_ptr<V8DebuggerScript>>;
H A Dv8-debugger-agent-impl.cc176 void adjustBreakpointLocation(const V8DebuggerScript& script, in adjustBreakpointLocation()
183 if (sourceOffset == V8DebuggerScript::kNoOffset) return; in adjustBreakpointLocation()
652 std::vector<V8DebuggerScript*> scripts; in removeBreakpoint()
655 V8DebuggerScript* script = scriptIter.second.get(); in removeBreakpoint()
665 const std::vector<V8DebuggerScript*>& scripts) { in removeBreakpointImpl()
753 V8DebuggerScript* script = it->second.get(); in continueToLocation()
843 V8DebuggerScript* script = scriptIterator->second.get(); in setBreakpointImpl()
1419 case V8DebuggerScript::Language::WebAssembly: in getScriptLanguage()
1421 case V8DebuggerScript::Language::JavaScript: in getScriptLanguage()
1571 V8DebuggerScript* scriptRef) { in setScriptInstrumentationBreakpointIfNeeded()
[all …]
H A Dv8-debugger.h92 V8DebuggerScript* script,
100 std::vector<std::unique_ptr<V8DebuggerScript>> getCompiledScripts(
H A Dv8-debugger.cc163 std::vector<std::unique_ptr<V8DebuggerScript>> V8Debugger::getCompiledScripts( in getCompiledScripts()
165 std::vector<std::unique_ptr<V8DebuggerScript>> result; in getCompiledScripts()
177 result.push_back(V8DebuggerScript::Create(m_isolate, script, false, agent, in getCompiledScripts()
379 int targetContextGroupId, V8DebuggerScript* script, in continueToLocation()
534 V8DebuggerScript::Create(isolate, script, is_live_edited, agent, in ScriptCompiled()
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/inspector/
H A Dv8-debugger-script.h47 class V8DebuggerScript {
50 static std::unique_ptr<V8DebuggerScript> Create(
54 virtual ~V8DebuggerScript();
102 V8DebuggerScript(v8::Isolate*, String16 id, String16 url,
116 DISALLOW_COPY_AND_ASSIGN(V8DebuggerScript);
H A Dv8-debugger-script.cc89 class ActualScript : public V8DebuggerScript {
90 friend class V8DebuggerScript;
96 : V8DebuggerScript(isolate, String16::fromInteger(script->Id()), in ActualScript()
320 m_language = V8DebuggerScript::Language::WebAssembly; in Initialize()
322 m_language = V8DebuggerScript::Language::JavaScript; in Initialize()
360 std::unique_ptr<V8DebuggerScript> V8DebuggerScript::Create( in Create()
367 V8DebuggerScript::V8DebuggerScript(v8::Isolate* isolate, String16 id, in V8DebuggerScript() function in v8_inspector::V8DebuggerScript
374 V8DebuggerScript::~V8DebuggerScript() = default;
376 void V8DebuggerScript::setSourceURL(const String16& sourceURL) { in setSourceURL()
383 bool V8DebuggerScript::setBreakpoint(const String16& condition, in setBreakpoint()
[all …]
H A Dv8-debugger-agent-impl.h23 class V8DebuggerScript; variable
160 void didParseSource(std::unique_ptr<V8DebuggerScript>, bool success);
169 void ScriptCollected(const V8DebuggerScript* script);
190 const std::vector<V8DebuggerScript*>& scripts);
201 void setScriptInstrumentationBreakpointIfNeeded(V8DebuggerScript* script);
207 std::unordered_map<String16, std::unique_ptr<V8DebuggerScript>>;
H A Dv8-debugger-agent-impl.cc196 if (sourceOffset == V8DebuggerScript::kNoOffset) return; in adjustBreakpointLocation()
686 std::vector<V8DebuggerScript*> scripts; in removeBreakpoint()
689 V8DebuggerScript* script = scriptIter.second.get(); in removeBreakpoint()
699 const std::vector<V8DebuggerScript*>& scripts) { in removeBreakpointImpl()
792 V8DebuggerScript* script = it->second.get(); in continueToLocation()
909 V8DebuggerScript* script = scriptIterator->second.get(); in setBreakpointImpl()
1550 case V8DebuggerScript::Language::WebAssembly: in getScriptLanguage()
1552 case V8DebuggerScript::Language::JavaScript: in getScriptLanguage()
1575 const V8DebuggerScript& script) { in getDebugSymbols()
1736 V8DebuggerScript* scriptRef) { in setScriptInstrumentationBreakpointIfNeeded()
[all …]
H A Dv8-debugger.h92 V8DebuggerScript* script,
100 std::vector<std::unique_ptr<V8DebuggerScript>> getCompiledScripts(
H A Dv8-debugger.cc163 std::vector<std::unique_ptr<V8DebuggerScript>> V8Debugger::getCompiledScripts( in getCompiledScripts()
165 std::vector<std::unique_ptr<V8DebuggerScript>> result; in getCompiledScripts()
177 result.push_back(V8DebuggerScript::Create(m_isolate, script, false, agent, in getCompiledScripts()
379 int targetContextGroupId, V8DebuggerScript* script, in continueToLocation()
538 V8DebuggerScript::Create(isolate, script, is_live_edited, agent, in ScriptCompiled()