Home
last modified time | relevance | path

Searched refs:callFrameId (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInjectedScript.h71 const String& callFrameId,
79 …void restartFrame(ErrorString*, const ScriptValue& callFrames, const String& callFrameId, RefPtr<J…
80 …void getStepInPositions(ErrorString*, const ScriptValue& callFrames, const String& callFrameId, Re…
94 …tValue findCallFrameById(ErrorString*, const ScriptValue& topCallFrame, const String& callFrameId);
DInjectedScript.cpp82 …ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, const String& … in evaluateOnCallFrame() argument
86 function.appendArgument(callFrameId); in evaluateOnCallFrame()
95 …ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, RefPtr<JSONObj… in restartFrame() argument
99 function.appendArgument(callFrameId); in restartFrame()
115 …ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, RefPtr<Array<T… in getStepInPositions() argument
119 function.appendArgument(callFrameId); in getStepInPositions()
299 …CallFrameById(ErrorString* errorString, const ScriptValue& topCallFrame, const String& callFrameId) in findCallFrameById() argument
303 function.appendArgument(callFrameId); in findCallFrameById()
DInspectorDebuggerAgent.cpp435 void InspectorDebuggerAgent::getStepInPositions(ErrorString* errorString, const String& callFrameId in getStepInPositions() argument
441 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptForObjectId(callFrameId); in getStepInPositions()
447 injectedScript.getStepInPositions(errorString, m_currentCallStack, callFrameId, positions); in getStepInPositions()
612 void InspectorDebuggerAgent::restartFrame(ErrorString* errorString, const String& callFrameId, RefP… in restartFrame() argument
618 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptForObjectId(callFrameId); in restartFrame()
624 injectedScript.restartFrame(errorString, m_currentCallStack, callFrameId, &result); in restartFrame()
733 …Value InspectorDebuggerAgent::resolveCallFrame(ErrorString* errorString, const String* callFrameId) in resolveCallFrame() argument
735 if (!callFrameId) in resolveCallFrame()
741 … InjectedScript injectedScript = m_injectedScriptManager->injectedScriptForObjectId(*callFrameId); in resolveCallFrame()
746 return injectedScript.findCallFrameById(errorString, m_currentCallStack, *callFrameId); in resolveCallFrame()
[all …]
DInspectorDebuggerAgent.h101 …virtual void getStepInPositions(ErrorString*, const String& callFrameId, RefPtr<TypeBuilder::Array…
106 …virtual void restartFrame(ErrorString*, const String& callFrameId, RefPtr<TypeBuilder::Array<TypeB…
111 virtual void stepOver(ErrorString*, const String* callFrameId);
113 virtual void stepOut(ErrorString*, const String* callFrameId);
116 const String& callFrameId,
206 ScriptValue resolveCallFrame(ErrorString*, const String* callFrameId);
DInjectedScriptSource.js651 …evaluateOnCallFrame: function(topCallFrame, callFrameId, expression, objectGroup, injectCommandLin… argument
653 var callFrame = this.callFrameForId(topCallFrame, callFrameId);
664 restartFrame: function(topCallFrame, callFrameId) argument
666 var callFrame = this.callFrameForId(topCallFrame, callFrameId);
680 getStepInPositions: function(topCallFrame, callFrameId) argument
682 var callFrame = this.callFrameForId(topCallFrame, callFrameId);
701 …setVariableValue: function(topCallFrame, callFrameId, functionObjectId, scopeNumber, variableName,… argument
704 if (typeof callFrameId === "string") {
705 var callFrame = this.callFrameForId(topCallFrame, callFrameId);
741 callFrameForId: function(topCallFrame, callFrameId) argument
[all …]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DRemoteObject.js563 …setVariableValue(this._scopeRef.number, name, newValue, this._scopeRef.callFrameId, this._scopeRef…
595 WebInspector.ScopeRef = function(number, callFrameId, functionId) argument
598 this.callFrameId = callFrameId;
DDebuggerModel.js865 return this._payload.callFrameId;
943 …DebuggerAgent.evaluateOnCallFrame(this._payload.callFrameId, code, objectGroup, includeCommandLine…
965 DebuggerAgent.restartFrame(this._payload.callFrameId, protocolCallback);
/external/chromium_org/v8/src/
Ddebug-debugger.js965 var callFrameId = 0;
967 callFrameId = opt_callframe.details_.frameId();
970 return %PrepareStep(this.break_id, action, count, callFrameId);