Searched refs:V8DebuggerScript (Results 1 – 7 of 7) sorted by relevance
/external/v8/src/inspector/ |
D | v8-debugger-script.h | 46 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);
|
D | v8-debugger-script.cc | 109 class ActualScript : public V8DebuggerScript { 110 friend class V8DebuggerScript; 115 : V8DebuggerScript(isolate, String16::fromInteger(script->Id()), in ActualScript() 289 class WasmVirtualScript : public V8DebuggerScript { 290 friend class V8DebuggerScript; 296 : V8DebuggerScript(isolate, std::move(id), std::move(url)), in WasmVirtualScript() 410 std::unique_ptr<V8DebuggerScript> V8DebuggerScript::Create( in Create() 417 std::unique_ptr<V8DebuggerScript> V8DebuggerScript::CreateWasm( in CreateWasm() 426 V8DebuggerScript::V8DebuggerScript(v8::Isolate* isolate, String16 id, in V8DebuggerScript() function in v8_inspector::V8DebuggerScript 430 V8DebuggerScript::~V8DebuggerScript() {} in ~V8DebuggerScript() [all …]
|
D | v8-debugger-agent-impl.h | 22 class V8DebuggerScript; variable 148 void didParseSource(std::unique_ptr<V8DebuggerScript>, bool success); 187 std::unordered_map<String16, std::unique_ptr<V8DebuggerScript>>;
|
D | v8-debugger.h | 71 V8DebuggerScript* script, 80 std::vector<std::unique_ptr<V8DebuggerScript>>&);
|
D | v8-debugger-agent-impl.cc | 159 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() 327 std::vector<std::unique_ptr<V8DebuggerScript>> compiledScripts; in enableImpl() 435 static bool matches(V8InspectorImpl* inspector, const V8DebuggerScript& script, in matches() 702 V8DebuggerScript* script = it->second.get(); in continueToLocation() 788 V8DebuggerScript* script = scriptIterator->second.get(); in setBreakpointImpl() 1379 std::unique_ptr<V8DebuggerScript> script, bool success) { in didParseSource() 1409 V8DebuggerScript* scriptRef = scriptIterator->second.get(); in didParseSource()
|
D | v8-debugger.cc | 221 std::vector<std::unique_ptr<V8DebuggerScript>>& result) { in getCompiledScripts() 229 result.push_back(V8DebuggerScript::Create(m_isolate, script, false, in getCompiledScripts() 236 result.push_back(V8DebuggerScript::Create(m_isolate, script, false, in getCompiledScripts() 434 int targetContextGroupId, V8DebuggerScript* script, in continueToLocation() 597 V8DebuggerScript::Create(isolate, script, is_live_edited, client), in ScriptCompiled()
|
D | wasm-translation.cc | 254 std::unique_ptr<V8DebuggerScript> fake_script = in AddFakeScript() 255 V8DebuggerScript::CreateWasm(isolate, translation, script_.Get(isolate), in AddFakeScript()
|