Home | History | Annotate | Download | only in v8

Lines Matching refs:Local

68 v8::Local<v8::Value> ScriptDebugServer::callDebuggerMethod(const char* functionName, int argc, v8::Handle<v8::Value> argv[])
71 v8::Handle<v8::Function> function = v8::Local<v8::Function>::Cast(debuggerScript->Get(v8AtomicString(m_isolate, functionName)));
91 v8::Local<v8::Context> debuggerContext = v8::Debug::GetDebugContext();
94 v8::Local<v8::Object> info = v8::Object::New(m_isolate);
101 v8::Handle<v8::Function> setBreakpointFunction = v8::Local<v8::Function>::Cast(m_debuggerScript.newLocal(m_isolate)->Get(v8AtomicString(m_isolate, "setBreakpoint")));
113 v8::Local<v8::Context> debuggerContext = v8::Debug::GetDebugContext();
116 v8::Local<v8::Object> info = v8::Object::New(m_isolate);
119 v8::Handle<v8::Function> removeBreakpointFunction = v8::Local<v8::Function>::Cast(m_debuggerScript.newLocal(m_isolate)->Get(v8AtomicString(m_isolate, "removeBreakpoint")));
127 v8::Local<v8::Context> debuggerContext = v8::Debug::GetDebugContext();
130 v8::Handle<v8::Function> clearBreakpoints = v8::Local<v8::Function>::Cast(m_debuggerScript.newLocal(m_isolate)->Get(v8AtomicString(m_isolate, "clearBreakpoints")));
138 v8::Local<v8::Context> debuggerContext = v8::Debug::GetDebugContext();
141 v8::Local<v8::Object> info = v8::Object::New(m_isolate);
143 v8::Handle<v8::Function> setBreakpointsActivated = v8::Local<v8::Function>::Cast(m_debuggerScript.newLocal(m_isolate)->Get(v8AtomicString(m_isolate, "setBreakpointsActivated")));
260 v8::Local<v8::Value> v8result;
267 v8::Local<v8::Message> message = tryCatch.Message();
276 v8::Local<v8::Object> resultTuple = v8result->ToObject();
281 v8::Local<v8::Value> normalResult = resultTuple->Get(1);
329 v8::Handle<v8::Function> currentCallFrameFunction = v8::Local<v8::Function>::Cast(m_debuggerScript.newLocal(m_isolate)->Get(v8AtomicString(m_isolate, "currentCallFrame")));
467 v8::Handle<v8::Function> getAfterCompileScript = v8::Local<v8::Function>::Cast(debuggerScript->Get(v8AtomicString(m_isolate, "getAfterCompileScript")));
474 v8::Local<v8::StackTrace> stackTrace = v8::StackTrace::CurrentStackTrace(m_isolate, 1);
484 v8::Handle<v8::Function> getBreakpointNumbersFunction = v8::Local<v8::Function>::Cast(debuggerScript->Get(v8AtomicString(m_isolate, "getBreakpointNumbers")));
520 v8::Local<v8::Value> value = V8ScriptRunner::compileAndRunInternalScript(source, m_isolate);
532 v8::Local<v8::Value> ScriptDebugServer::functionScopes(v8::Handle<v8::Function> function)
540 v8::Local<v8::Value> ScriptDebugServer::getInternalProperties(v8::Handle<v8::Object>& object)
543 return v8::Local<v8::Value>::New(m_isolate, v8::Undefined(m_isolate));
551 v8::Local<v8::Context> debuggerContext = v8::Debug::GetDebugContext();
578 v8::Local<v8::Script> script = V8ScriptRunner::compileScript(source, sourceURL, TextPosition(), 0, m_isolate);
580 v8::Local<v8::Message> message = tryCatch.Message();
607 v8::Local<v8::Script> script = scriptHandle->newLocal(m_isolate);
616 v8::Local<v8::Value> value = V8ScriptRunner::runCompiledScript(script, scriptState->executionContext(), m_isolate);
621 v8::Local<v8::Message> message = tryCatch.Message();