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.h76 const String& callFrameId,
85 …void restartFrame(ErrorString*, const ScriptValue& callFrames, const String& callFrameId, RefPtr<J…
86 …void getStepInPositions(ErrorString*, const ScriptValue& callFrames, const String& callFrameId, Re…
DInjectedScript.cpp83 … callFrames, const Vector<ScriptValue>& asyncCallStacks, const String& callFrameId, const String& … in evaluateOnCallFrame() argument
88 function.appendArgument(callFrameId); in evaluateOnCallFrame()
97 …ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, RefPtr<JSONObj… in restartFrame() argument
101 function.appendArgument(callFrameId); in restartFrame()
117 …ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, RefPtr<Array<T… in getStepInPositions() argument
121 function.appendArgument(callFrameId); in getStepInPositions()
DInjectedScriptSource.js805 …evaluateOnCallFrame: function(topCallFrame, asyncCallStacks, callFrameId, expression, objectGroup,… argument
807 …Id = nullifyObjectProto(/** @type {!Object} */ (InjectedScriptHost.eval("(" + callFrameId + ")")));
821 restartFrame: function(topCallFrame, callFrameId) argument
823 var callFrame = this._callFrameForId(topCallFrame, callFrameId);
837 getStepInPositions: function(topCallFrame, callFrameId) argument
839 var callFrame = this._callFrameForId(topCallFrame, callFrameId);
858 …setVariableValue: function(topCallFrame, callFrameId, functionObjectId, scopeNumber, variableName,… argument
863 if (typeof callFrameId === "string") {
864 var callFrame = this._callFrameForId(topCallFrame, callFrameId);
886 _callFrameForId: function(topCallFrame, callFrameId) argument
[all …]
DInspectorDebuggerAgent.cpp464 void InspectorDebuggerAgent::getStepInPositions(ErrorString* errorString, const String& callFrameId in getStepInPositions() argument
470 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptForObjectId(callFrameId); in getStepInPositions()
476 injectedScript.getStepInPositions(errorString, m_currentCallStack, callFrameId, positions); in getStepInPositions()
663 void InspectorDebuggerAgent::restartFrame(ErrorString* errorString, const String& callFrameId, RefP… in restartFrame() argument
669 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptForObjectId(callFrameId); in restartFrame()
675 injectedScript.restartFrame(errorString, m_currentCallStack, callFrameId, &result); in restartFrame()
1025 …ggerAgent::evaluateOnCallFrame(ErrorString* errorString, const String& callFrameId, const String& … in evaluateOnCallFrame() argument
1031 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptForObjectId(callFrameId); in evaluateOnCallFrame()
1054 ….evaluateOnCallFrame(errorString, m_currentCallStack, asyncCallStacks, callFrameId, expression, ob… in evaluateOnCallFrame()
1141 …tring& variableName, const RefPtr<JSONObject>& newValue, const String* callFrameId, const String* … in setVariableValue() argument
[all …]
DInspectorDebuggerAgent.h117 …virtual void getStepInPositions(ErrorString*, const String& callFrameId, RefPtr<TypeBuilder::Array…
122 …virtual void restartFrame(ErrorString*, const String& callFrameId, RefPtr<TypeBuilder::Array<TypeB…
133 const String& callFrameId,
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DRemoteObject.js771 …name, WebInspector.RemoteObject.toCallArgument(result), this._scopeRef.callFrameId, this._scopeRef…
803 WebInspector.ScopeRef = function(number, callFrameId, functionId) argument
806 this.callFrameId = callFrameId;
DDebuggerModel.js939 return this._payload.callFrameId;
1016 …this._debuggerAgent.evaluateOnCallFrame(this._payload.callFrameId, code, objectGroup, includeComma…
1038 this._debuggerAgent.restartFrame(this._payload.callFrameId, protocolCallback.bind(this));
/external/chromium_org/v8/src/
Ddebug-debugger.js945 var callFrameId = 0;
947 callFrameId = opt_callframe.details_.frameId();
950 return %PrepareStep(this.break_id, action, count, callFrameId);