Home
last modified time | relevance | path

Searched refs:scriptId (Results 1 – 22 of 22) sorted by relevance

/external/v8/tools/
Dparse-processor.js883 eventName, scriptId, startPosition, endPosition, duration, timestamp, argument
890 scriptId, startPosition, endPosition, duration, timestamp,
903 scriptId, startPosition, endPosition, duration, timestamp, functionName) { argument
904 if (scriptId == -1) {
907 let script = this.lookupScript(scriptId);
933 processScriptEvent(eventName, scriptId, timestamp) { argument
934 let script = this.idToScript.get(scriptId);
940 script = new Script(scriptId);
941 this.idToScript.set(scriptId, script);
970 processScriptDetails(scriptId, file, startLine, startColumn, size) { argument
[all …]
/external/v8/src/inspector/
Dv8-debugger-agent-impl.cc66 String16 scriptId = location->getScriptId(); in TranslateLocation() local
70 &scriptId, &lineNumber, &columnNumber)) { in TranslateLocation()
71 location->setScriptId(std::move(scriptId)); in TranslateLocation()
260 String16 scriptId = String16::fromInteger(iterator->GetScriptId()); in buildScopes() local
280 .setScriptId(scriptId) in buildScopes()
287 .setScriptId(scriptId) in buildScopes()
640 String16 scriptId = start->getScriptId(); in getPossibleBreakpoints() local
650 if (end.fromJust()->getScriptId() != scriptId) in getPossibleBreakpoints()
659 auto it = m_scripts.find(scriptId); in getPossibleBreakpoints()
681 .setScriptId(scriptId) in getPossibleBreakpoints()
[all …]
Dv8-debugger-script.cc85 const String16& scriptId, in TranslateProtocolLocationToV8Location() argument
90 String16 translatedScriptId = scriptId; in TranslateProtocolLocationToV8Location()
99 const String16& scriptId, const String16& expectedProtocolScriptId) { in TranslateV8LocationToProtocolLocation() argument
102 String16 translatedScriptId = scriptId; in TranslateV8LocationToProtocolLocation()
338 scriptId(), v8ScriptId); in getPossibleBreakpoints()
347 scriptId(), v8ScriptId); in getPossibleBreakpoints()
354 scriptId()); in getPossibleBreakpoints()
376 scriptId(), v8ScriptId); in setBreakpoint()
381 v8ScriptId, scriptId()); in setBreakpoint()
Dv8-debugger-agent-impl.h69 const String16& scriptId, const String16& query,
92 Response getScriptSource(const String16& scriptId,
122 const String16& scriptId,
150 bool isFunctionBlackboxed(const String16& scriptId,
170 const String16& breakpointId, const String16& scriptId,
Dv8-console-message.h57 std::unique_ptr<V8StackTraceImpl>, int scriptId, v8::Isolate*,
85 int scriptId);
Dwasm-translation.cc259 translation->AddFakeScript(fake_script->scriptId(), this); in AddFakeScript()
385 void WasmTranslation::AddFakeScript(const String16& scriptId, in AddFakeScript() argument
387 DCHECK_EQ(0, fake_scripts_.count(scriptId)); in AddFakeScript()
388 fake_scripts_.insert(std::make_pair(scriptId, translator)); in AddFakeScript()
Dwasm-translation.h70 void AddFakeScript(const String16& scriptId, TranslatorImpl* translator);
Djs_protocol.pdl76 Runtime.ScriptId scriptId
143 Runtime.ScriptId scriptId
202 # Returns possible locations for breakpoint. scriptId in start and end range locations should be
221 Runtime.ScriptId scriptId
272 Runtime.ScriptId scriptId
305 Runtime.ScriptId scriptId
388 Runtime.ScriptId scriptId
483 Runtime.ScriptId scriptId
516 Runtime.ScriptId scriptId
724 Runtime.ScriptId scriptId
[all …]
Dv8-console-message.cc210 int scriptId) { in setLocation() argument
215 m_scriptId = scriptId; in setLocation()
433 std::unique_ptr<V8StackTraceImpl> stackTrace, int scriptId, in createForException() argument
439 std::move(stackTrace), scriptId); in createForException()
Dv8-debugger-script.h58 const String16& scriptId() const { return m_id; } in scriptId() function
Dv8-debugger.cc68 int scriptId, int lineNumber, in buildLocation() argument
70 if (scriptId == v8::UnboundScript::kNoScriptId) in buildLocation()
83 toV8String(isolate, String16::fromInteger(scriptId))) in buildLocation()
626 String16 scriptId = String16::fromInteger(script->Id()); in IsFunctionBlackboxed() local
629 [&hasAgents, &allBlackboxed, &scriptId, &start, in IsFunctionBlackboxed()
634 allBlackboxed &= agent->isFunctionBlackboxed(scriptId, start, end); in IsFunctionBlackboxed()
Dv8-stack-trace-impl.h32 const String16& scriptId() const;
Dv8-runtime-agent-impl.cc482 Maybe<int> executionContextId, Maybe<String16>* scriptId, in compileScript() argument
517 *scriptId = scriptValueId; in compileScript()
522 const String16& scriptId, Maybe<int> executionContextId, in runScript() argument
532 auto it = m_compiledScripts.find(scriptId); in runScript()
Dv8-inspector-impl.h92 int scriptId) override;
Dv8-stack-trace-impl.cc140 const String16& StackFrame::scriptId() const { return m_scriptId; } in scriptId() function in v8_inspector::StackFrame
262 return toStringView(m_frames[0]->scriptId()); in topScriptId()
Dv8-inspector-impl.cc264 std::unique_ptr<V8StackTrace> stackTrace, int scriptId) { in exceptionThrown() argument
274 scriptId, m_isolate, toString16(message), in exceptionThrown()
/external/autotest/frontend/client/src/autotest/common/
DPaddedJsonRpcProxy.java132 String scriptId = SCRIPT_TAG_PREFIX + requestId; in addScript() local
133 Element scriptElement = addScriptToDocument(scriptId, url); in addScript()
/external/v8/src/profiler/
Dheap-snapshot-generator.h37 SourceLocation(int entry_index, int scriptId, int line, int col) in SourceLocation()
38 : entry_index(entry_index), scriptId(scriptId), line(line), col(col) {} in SourceLocation()
41 const int scriptId; member
192 void AddLocation(int entry, int scriptId, int line, int col);
Dheap-snapshot-generator.cc252 void HeapSnapshot::AddLocation(int entry, int scriptId, int line, int col) { in AddLocation() argument
253 locations_.emplace_back(entry, scriptId, line, col); in AddLocation()
638 int scriptId = script->id(); in ExtractLocationForJSFunction() local
642 snapshot_->AddLocation(entry, scriptId, line, col); in ExtractLocationForJSFunction()
3107 buffer_pos = utoa(location.scriptId, buffer, buffer_pos); in SerializeLocation()
/external/v8/include/
Dv8-inspector.h273 std::unique_ptr<V8StackTrace>, int scriptId) = 0;
/external/v8/
DChangeLog44591 Added scriptId to StackTrace frames (issue 2865).
/external/kotlinc/lib/
Dkotlin-compiler.jarMETA-INF/MANIFEST.MF org/jetbrains/kotlin/utils/JavaSdkUtil.class JavaSdkUtil ...