/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InjectedScript.h | 76 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…
|
D | InjectedScript.cpp | 83 … 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()
|
D | InjectedScriptSource.js | 805 …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 …]
|
D | InspectorDebuggerAgent.cpp | 464 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 …]
|
D | InspectorDebuggerAgent.h | 117 …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/ |
D | RemoteObject.js | 771 …name, WebInspector.RemoteObject.toCallArgument(result), this._scopeRef.callFrameId, this._scopeRef… 803 WebInspector.ScopeRef = function(number, callFrameId, functionId) argument 806 this.callFrameId = callFrameId;
|
D | DebuggerModel.js | 939 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/ |
D | debug-debugger.js | 945 var callFrameId = 0; 947 callFrameId = opt_callframe.details_.frameId(); 950 return %PrepareStep(this.break_id, action, count, callFrameId);
|