/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InjectedScript.h | 71 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);
|
D | InjectedScript.cpp | 82 …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()
|
D | InspectorDebuggerAgent.cpp | 435 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 …]
|
D | InspectorDebuggerAgent.h | 101 …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);
|
D | InjectedScriptSource.js | 651 …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/ |
D | RemoteObject.js | 563 …setVariableValue(this._scopeRef.number, name, newValue, this._scopeRef.callFrameId, this._scopeRef… 595 WebInspector.ScopeRef = function(number, callFrameId, functionId) argument 598 this.callFrameId = callFrameId;
|
D | DebuggerModel.js | 865 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/ |
D | debug-debugger.js | 965 var callFrameId = 0; 967 callFrameId = opt_callframe.details_.frameId(); 970 return %PrepareStep(this.break_id, action, count, callFrameId);
|