Searched refs:scriptId (Results 1 - 20 of 20) sorted by relevance

/external/v8/src/inspector/
H A Dwasm-translation.h63 void AddFakeScript(const String16& scriptId, TranslatorImpl* translator);
H A Dv8-debugger-agent-impl.h63 const String16& scriptId, const String16& query,
84 Response getScriptSource(const String16& scriptId,
107 const String16& scriptId,
113 void setBreakpointAt(const String16& scriptId, int lineNumber,
116 void removeBreakpointAt(const String16& scriptId, int lineNumber,
135 void willExecuteScript(int scriptId);
138 bool isFunctionBlackboxed(const String16& scriptId,
H A Dv8-debugger-agent-impl.cc68 String16 scriptId = location->getScriptId(); local
73 &scriptId, &lineNumber, &columnNumber)) {
77 location->setScriptId(std::move(scriptId));
114 const String16& scriptId, int lineNumber, int columnNumber) {
116 .setScriptId(scriptId)
366 String16 scriptId = start->getScriptId(); local
376 if (end.fromJust()->getScriptId() != scriptId)
377 return Response::Error("Locations should contain the same scriptId");
385 auto it = m_scripts.find(scriptId);
396 .setScriptId(scriptId)
113 buildProtocolLocation( const String16& scriptId, int lineNumber, int columnNumber) argument
422 isFunctionBlackboxed(const String16& scriptId, const v8::debug::Location& start, const v8::debug::Location& end) argument
497 searchInContent( const String16& scriptId, const String16& query, Maybe<bool> optionalCaseSensitive, Maybe<bool> optionalIsRegex, std::unique_ptr<Array<protocol::Debugger::SearchMatch>>* results) argument
516 setScriptSource( const String16& scriptId, const String16& newContent, Maybe<bool> dryRun, Maybe<protocol::Array<protocol::Debugger::CallFrame>>* newCallFrames, Maybe<bool>* stackChanged, Maybe<StackTrace>* asyncStackTrace, Maybe<protocol::Runtime::ExceptionDetails>* optOutCompileError) argument
579 getScriptSource(const String16& scriptId, String16* scriptSource) argument
806 setBlackboxedRanges( const String16& scriptId, std::unique_ptr<protocol::Array<protocol::Debugger::ScriptPosition>> inPositions) argument
846 willExecuteScript(int scriptId) argument
1014 String16 scriptId = script->scriptId(); local
1205 setBreakpointAt(const String16& scriptId, int lineNumber, int columnNumber, BreakpointSource source, const String16& condition) argument
1214 removeBreakpointAt(const String16& scriptId, int lineNumber, int columnNumber, BreakpointSource source) argument
[all...]
H A Dv8-console-message.h54 std::unique_ptr<V8StackTraceImpl>, int scriptId, v8::Isolate*,
82 int scriptId);
H A Dv8-stack-trace-impl.h32 Frame(const String16& functionName, const String16& scriptId,
37 const String16& scriptId() const { return m_scriptId; } function in class:v8_inspector::final::Frame
H A Dv8-debugger-script.cc75 const String16& scriptId,
80 String16 translatedScriptId = scriptId;
89 const String16& scriptId, const String16& expectedProtocolScriptId) {
92 String16 translatedScriptId = scriptId;
238 scriptId(), v8ScriptId);
247 scriptId(), v8ScriptId);
254 scriptId());
73 TranslateProtocolLocationToV8Location(WasmTranslation* wasmTranslation, v8::debug::Location* loc, const String16& scriptId, const String16& expectedV8ScriptId) argument
87 TranslateV8LocationToProtocolLocation( WasmTranslation* wasmTranslation, v8::debug::Location* loc, const String16& scriptId, const String16& expectedProtocolScriptId) argument
H A Dv8-debugger-script.h57 const String16& scriptId() const { return m_id; } function in class:v8_inspector::V8DebuggerScript
H A Dv8-stack-trace-impl.cc27 String16 scriptId = String16::fromInteger(frame->GetScriptId()); local
44 &scriptId, &sourceLineNumber, &sourceColumn);
45 return V8StackTraceImpl::Frame(functionName, scriptId, sourceName,
75 const String16& scriptId,
79 m_scriptId(scriptId),
74 Frame(const String16& functionName, const String16& scriptId, const String16& scriptName, int lineNumber, int column) argument
H A Ddebugger_script_externs.js15 scriptId: string,
53 * @param {number} scriptId
60 Debug.setScriptBreakPointById = function(scriptId, line, column, condition, groupId, positionAlignment) {}
H A Dwasm-translation.cc199 translation->AddFakeScript(fake_script->scriptId(), this);
323 void WasmTranslation::AddFakeScript(const String16& scriptId, argument
325 DCHECK_EQ(0, fake_scripts_.count(scriptId));
326 fake_scripts_.insert(std::make_pair(scriptId, translator));
H A Dv8-inspector-impl.h88 void willExecuteScript(v8::Local<v8::Context>, int scriptId) override;
97 int scriptId) override;
H A Dv8-inspector-impl.cc289 int scriptId) {
292 agent->willExecuteScript(scriptId);
319 std::unique_ptr<V8StackTrace> stackTrace, int scriptId) {
329 scriptId, m_isolate, toString16(message),
288 willExecuteScript(v8::Local<v8::Context> context, int scriptId) argument
315 exceptionThrown( v8::Local<v8::Context> context, const StringView& message, v8::Local<v8::Value> exception, const StringView& detailedMessage, const StringView& url, unsigned lineNumber, unsigned columnNumber, std::unique_ptr<V8StackTrace> stackTrace, int scriptId) argument
H A Ddebugger-script.js147 * @param {number} scriptId
152 DebuggerScript.liveEditScriptSource = function(scriptId, newSource, preview)
157 if (scripts[i].id == scriptId) {
275 "scriptId": String(script.id())
343 "scriptId": String(script.id())
353 "scriptId": String(script.id())
H A Dv8-console-message.cc197 int scriptId) {
202 m_scriptId = scriptId;
412 std::unique_ptr<V8StackTraceImpl> stackTrace, int scriptId,
418 std::move(stackTrace), scriptId);
194 setLocation(const String16& url, unsigned lineNumber, unsigned columnNumber, std::unique_ptr<V8StackTraceImpl> stackTrace, int scriptId) argument
409 createForException( double timestamp, const String16& detailedMessage, const String16& url, unsigned lineNumber, unsigned columnNumber, std::unique_ptr<V8StackTraceImpl> stackTrace, int scriptId, v8::Isolate* isolate, const String16& message, int contextId, v8::Local<v8::Value> exception, unsigned exceptionId) argument
H A Dv8-runtime-agent-impl.cc537 Maybe<int> executionContextId, Maybe<String16>* scriptId,
573 *scriptId = scriptValueId;
578 const String16& scriptId, Maybe<int> executionContextId,
588 auto it = m_compiledScripts.find(scriptId);
535 compileScript( const String16& expression, const String16& sourceURL, bool persistScript, Maybe<int> executionContextId, Maybe<String16>* scriptId, Maybe<protocol::Runtime::ExceptionDetails>* exceptionDetails) argument
577 runScript( const String16& scriptId, Maybe<int> executionContextId, Maybe<String16> objectGroup, Maybe<bool> silent, Maybe<bool> includeCommandLineAPI, Maybe<bool> returnByValue, Maybe<bool> generatePreview, Maybe<bool> awaitPromise, std::unique_ptr<RunScriptCallback> callback) argument
H A Dv8-console.cc543 String16 scriptId = String16::fromInteger(function->ScriptId());
550 debuggerAgent->setBreakpointAt(scriptId, lineNumber, columnNumber, source,
553 debuggerAgent->removeBreakpointAt(scriptId, lineNumber, columnNumber,
H A Dv8-debugger.cc84 int scriptId, int lineNumber,
86 if (scriptId == v8::UnboundScript::kNoScriptId)
98 toV8StringInternalized(isolate, "scriptId"),
99 toV8String(isolate, String16::fromInteger(scriptId)))
83 buildLocation(v8::Local<v8::Context> context, int scriptId, int lineNumber, int columnNumber) argument
/external/autotest/frontend/client/src/autotest/common/
H A DPaddedJsonRpcProxy.java132 String scriptId = SCRIPT_TAG_PREFIX + requestId;
133 Element scriptElement = addScriptToDocument(scriptId, url);
/external/v8/include/
H A Dv8-inspector.h227 virtual void willExecuteScript(v8::Local<v8::Context>, int scriptId) = 0;
245 std::unique_ptr<V8StackTrace>, int scriptId) = 0;
/external/v8/src/debug/
H A Ddebug.js796 function scriptById(scriptId) {
799 if (script.id == scriptId) return script;

Completed in 761 milliseconds