Home
last modified time | relevance | path

Searched refs:JavaScriptCallFrame (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/inspector/
Djava-script-call-frame.cc38 JavaScriptCallFrame::JavaScriptCallFrame(v8::Local<v8::Context> debuggerContext, in JavaScriptCallFrame() function in v8_inspector::JavaScriptCallFrame
44 JavaScriptCallFrame::~JavaScriptCallFrame() {} in ~JavaScriptCallFrame()
46 int JavaScriptCallFrame::callV8FunctionReturnInt(const char* name) const { in callV8FunctionReturnInt()
64 int JavaScriptCallFrame::sourceID() const { in sourceID()
68 int JavaScriptCallFrame::line() const { in line()
72 int JavaScriptCallFrame::column() const { in column()
76 int JavaScriptCallFrame::contextId() const { in contextId()
80 bool JavaScriptCallFrame::isAtReturn() const { in isAtReturn()
94 v8::Local<v8::Object> JavaScriptCallFrame::details() const { in details()
108 v8::MaybeLocal<v8::Value> JavaScriptCallFrame::evaluate( in evaluate()
[all …]
Djava-script-call-frame.h43 class JavaScriptCallFrame {
45 static std::unique_ptr<JavaScriptCallFrame> create( in create()
47 return wrapUnique(new JavaScriptCallFrame(debuggerContext, callFrame)); in create()
49 ~JavaScriptCallFrame();
66 JavaScriptCallFrame(v8::Local<v8::Context> debuggerContext,
75 DISALLOW_COPY_AND_ASSIGN(JavaScriptCallFrame);
78 using JavaScriptCallFrames = std::vector<std::unique_ptr<JavaScriptCallFrame>>;
Dv8-debugger-agent-impl.h18 class JavaScriptCallFrame; variable
151 SkipPauseRequest shouldSkipExceptionPause(JavaScriptCallFrame* topCallFrame);
152 SkipPauseRequest shouldSkipStepPause(JavaScriptCallFrame* topCallFrame);
172 bool isCallFrameWithUnknownScriptOrBlackboxed(JavaScriptCallFrame*);
Dv8-debugger-agent-impl.cc430 JavaScriptCallFrame* frame = in isTopPausedCallFrameBlackboxed()
436 JavaScriptCallFrame* frame) { in isCallFrameWithUnknownScriptOrBlackboxed()
467 JavaScriptCallFrame* topCallFrame) { in shouldSkipExceptionPause()
475 JavaScriptCallFrame* topCallFrame) { in shouldSkipStepPause()
669 JavaScriptCallFrame* frame = in stepOver()
920 const std::unique_ptr<JavaScriptCallFrame>& currentCallFrame = in currentCallFrames()
1090 JavaScriptCallFrame* topCallFrame = in didPause()
Ddebugger_script_externs.js57 var JavaScriptCallFrame; variable
Dv8-debugger.cc460 callFrames.push_back(JavaScriptCallFrame::create( in currentCallFrames()