HomeSort by relevance Sort by last modified time
    Searched refs:scriptId (Results 1 - 19 of 19) sorted by null

  /external/autotest/frontend/client/src/autotest/common/
PaddedJsonRpcProxy.java 132 String scriptId = SCRIPT_TAG_PREFIX + requestId;
133 Element scriptElement = addScriptToDocument(scriptId, url);
  /external/v8/tools/
parse-processor.js 764 // "compilation-cache","hit"|"put",{type},{scriptid},{start position},
883 eventName, scriptId, startPosition, endPosition, duration, timestamp,
890 scriptId, startPosition, endPosition, duration, timestamp,
903 scriptId, startPosition, endPosition, duration, timestamp, functionName) {
904 if (scriptId == -1) {
907 let script = this.lookupScript(scriptId);
933 processScriptEvent(eventName, scriptId, timestamp) {
934 let script = this.idToScript.get(scriptId);
940 script = new Script(scriptId);
941 this.idToScript.set(scriptId, script)
    [all...]
  /external/v8/src/inspector/
wasm-translation.h 70 void AddFakeScript(const String16& scriptId, TranslatorImpl* translator);
v8-debugger-agent-impl.cc 34 using protocol::Runtime::ScriptId;
66 String16 scriptId = location->getScriptId();
70 &scriptId, &lineNumber, &columnNumber)) {
71 location->setScriptId(std::move(scriptId));
260 String16 scriptId = String16::fromInteger(iterator->GetScriptId());
280 .setScriptId(scriptId)
287 .setScriptId(scriptId)
640 String16 scriptId = start->getScriptId();
650 if (end.fromJust()->getScriptId() != scriptId)
651 return Response::Error("Locations should contain the same scriptId");
    [all...]
v8-debugger-agent-impl.h 69 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,
v8-debugger-script.cc 85 const String16& scriptId,
90 String16 translatedScriptId = scriptId;
99 const String16& scriptId, const String16& expectedProtocolScriptId) {
102 String16 translatedScriptId = scriptId;
338 scriptId(), v8ScriptId);
347 scriptId(), v8ScriptId);
354 scriptId());
376 scriptId(), v8ScriptId);
381 v8ScriptId, scriptId());
v8-console-message.h 57 std::unique_ptr<V8StackTraceImpl>, int scriptId, v8::Isolate*,
85 int scriptId);
v8-debugger-script.h 58 const String16& scriptId() const { return m_id; }
v8-inspector-impl.h 92 int scriptId) override;
v8-stack-trace-impl.h 32 const String16& scriptId() const;
wasm-translation.cc 259 translation->AddFakeScript(fake_script->scriptId(), this);
385 void WasmTranslation::AddFakeScript(const String16& scriptId,
387 DCHECK_EQ(0, fake_scripts_.count(scriptId));
388 fake_scripts_.insert(std::make_pair(scriptId, translator));
v8-console-message.cc 210 int scriptId) {
215 m_scriptId = scriptId;
433 std::unique_ptr<V8StackTraceImpl> stackTrace, int scriptId,
439 std::move(stackTrace), scriptId);
v8-runtime-agent-impl.cc 482 Maybe<int> executionContextId, Maybe<String16>* scriptId,
517 *scriptId = scriptValueId;
522 const String16& scriptId, Maybe<int> executionContextId,
532 auto it = m_compiledScripts.find(scriptId);
    [all...]
v8-debugger.cc 68 int scriptId, int lineNumber,
70 if (scriptId == v8::UnboundScript::kNoScriptId)
82 toV8StringInternalized(isolate, "scriptId"),
83 toV8String(isolate, String16::fromInteger(scriptId)))
112 return buildLocation(context, func->ScriptId(), func->GetScriptLineNumber(),
626 String16 scriptId = String16::fromInteger(script->Id());
629 [&hasAgents, &allBlackboxed, &scriptId, &start,
634 allBlackboxed &= agent->isFunctionBlackboxed(scriptId, start, end);
762 if (buildLocation(context, function->ScriptId(),
    [all...]
v8-inspector-impl.cc 264 std::unique_ptr<V8StackTrace> stackTrace, int scriptId) {
274 scriptId, m_isolate, toString16(message),
v8-stack-trace-impl.cc 140 const String16& StackFrame::scriptId() const { return m_scriptId; }
262 return toStringView(m_frames[0]->scriptId());
  /external/v8/src/profiler/
heap-snapshot-generator.h 37 SourceLocation(int entry_index, int scriptId, int line, int col)
38 : entry_index(entry_index), scriptId(scriptId), line(line), col(col) {}
41 const int scriptId;
192 void AddLocation(int entry, int scriptId, int line, int col);
heap-snapshot-generator.cc 252 void HeapSnapshot::AddLocation(int entry, int scriptId, int line, int col) {
253 locations_.emplace_back(entry, scriptId, line, col);
638 int scriptId = script->id();
642 snapshot_->AddLocation(entry, scriptId, line, col);
    [all...]
  /external/v8/include/
v8-inspector.h 273 std::unique_ptr<V8StackTrace>, int scriptId) = 0;

Completed in 212 milliseconds