Home
last modified time | relevance | path

Searched refs:callDebuggerMethod (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DScriptDebugServer.cpp69 v8::Local<v8::Value> ScriptDebugServer::callDebuggerMethod(const char* functionName, int argc, v8::… in callDebuggerMethod() function in blink::ScriptDebugServer
157 v8::Handle<v8::Value> result = callDebuggerMethod("pauseOnExceptionsState", 0, argv); in pauseOnExceptionsState()
168 callDebuggerMethod("setPauseOnExceptionsState", 1, argv); in setPauseOnExceptionsState()
230 callDebuggerMethod(stepIntoV8MethodName, 1, argv); in stepIntoStatement()
240 callDebuggerMethod("stepOverStatement", 1, argv); in stepOverStatement()
250 callDebuggerMethod(stepOutV8MethodName, 1, argv); in stepOutOfFunction()
279 v8result = callDebuggerMethod("liveEditScriptSource", 3, argv); in setScriptSource()
328 v8::Handle<v8::Value> result = callDebuggerMethod("frameCount", WTF_ARRAY_LENGTH(argv), argv); in frameCount()
355 currentCallFrameV8 = callDebuggerMethod("currentCallFrame", WTF_ARRAY_LENGTH(argv), argv); in wrapCallFrames()
401 … currentCallFrameV8 = callDebuggerMethod("currentCallFrameByIndex", WTF_ARRAY_LENGTH(argv), argv); in callFrameNoScopes()
[all …]
DPageScriptDebugServer.cpp254 …v8::Handle<v8::Value> v8Value = callDebuggerMethod("isEvalCompilation", WTF_ARRAY_LENGTH(argvEvent… in preprocessBeforeCompile()
259 …String scriptName = toCoreStringWithUndefinedOrNullCheck(callDebuggerMethod("getScriptName", WTF_A… in preprocessBeforeCompile()
260 …String script = toCoreStringWithUndefinedOrNullCheck(callDebuggerMethod("getScriptSource", WTF_ARR… in preprocessBeforeCompile()
265callDebuggerMethod("setScriptSource", WTF_ARRAY_LENGTH(argvPreprocessedScript), argvPreprocessedSc… in preprocessBeforeCompile()
DScriptDebugServer.h104 …v8::Local<v8::Value> callDebuggerMethod(const char* functionName, int argc, v8::Handle<v8::Value> …