• Home
  • Raw
  • Download

Lines Matching full:local

38 JavaScriptCallFrame::JavaScriptCallFrame(v8::Local<v8::Context> debuggerContext,  in JavaScriptCallFrame()
39 v8::Local<v8::Object> callFrame) in JavaScriptCallFrame()
50 v8::Local<v8::Context> context = in callV8FunctionReturnInt()
51 v8::Local<v8::Context>::New(m_isolate, m_debuggerContext); in callV8FunctionReturnInt()
52 v8::Local<v8::Object> callFrame = in callV8FunctionReturnInt()
53 v8::Local<v8::Object>::New(m_isolate, m_callFrame); in callV8FunctionReturnInt()
54 v8::Local<v8::Function> func = v8::Local<v8::Function>::Cast( in callV8FunctionReturnInt()
57 v8::Local<v8::Value> result; in callV8FunctionReturnInt()
70 v8::Local<v8::Context> context = in isAtReturn()
71 v8::Local<v8::Context>::New(m_isolate, m_debuggerContext); in isAtReturn()
72 v8::Local<v8::Object> callFrame = in isAtReturn()
73 v8::Local<v8::Object>::New(m_isolate, m_callFrame); in isAtReturn()
74 v8::Local<v8::Value> result; in isAtReturn()
85 v8::Local<v8::Context> context = in details()
86 v8::Local<v8::Context>::New(m_isolate, m_debuggerContext); in details()
87 v8::Local<v8::Object> callFrame = in details()
88 v8::Local<v8::Object>::New(m_isolate, m_callFrame); in details()
89 v8::Local<v8::Function> func = v8::Local<v8::Function>::Cast( in details()
93 v8::Local<v8::Value> details; in details()
95 return v8::Local<v8::Object>::Cast(details); in details()
101 v8::Local<v8::Value> expression, bool throwOnSideEffect) { in evaluate()
104 v8::Local<v8::Context> context = in evaluate()
105 v8::Local<v8::Context>::New(m_isolate, m_debuggerContext); in evaluate()
106 v8::Local<v8::Object> callFrame = in evaluate()
107 v8::Local<v8::Object>::New(m_isolate, m_callFrame); in evaluate()
108 v8::Local<v8::Function> evalFunction = v8::Local<v8::Function>::Cast( in evaluate()
111 v8::Local<v8::Value> argv[] = { in evaluate()
119 v8::Local<v8::Context> context = in restart()
120 v8::Local<v8::Context>::New(m_isolate, m_debuggerContext); in restart()
121 v8::Local<v8::Object> callFrame = in restart()
122 v8::Local<v8::Object>::New(m_isolate, m_callFrame); in restart()
123 v8::Local<v8::Function> restartFunction = v8::Local<v8::Function>::Cast( in restart()
135 int scopeNumber, v8::Local<v8::Value> variableName, in setVariableValue()
136 v8::Local<v8::Value> newValue) { in setVariableValue()
139 v8::Local<v8::Context> context = in setVariableValue()
140 v8::Local<v8::Context>::New(m_isolate, m_debuggerContext); in setVariableValue()
141 v8::Local<v8::Object> callFrame = in setVariableValue()
142 v8::Local<v8::Object>::New(m_isolate, m_callFrame); in setVariableValue()
143 v8::Local<v8::Function> setVariableValueFunction = in setVariableValue()
144 v8::Local<v8::Function>::Cast( in setVariableValue()
149 v8::Local<v8::Value> argv[] = { in setVariableValue()
150 v8::Local<v8::Value>(v8::Integer::New(m_isolate, scopeNumber)), in setVariableValue()