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()
82 v8::Local<v8::Context> context = in isAtReturn()
83 v8::Local<v8::Context>::New(m_isolate, m_debuggerContext); in isAtReturn()
84 v8::Local<v8::Object> callFrame = in isAtReturn()
85 v8::Local<v8::Object>::New(m_isolate, m_callFrame); in isAtReturn()
86 v8::Local<v8::Value> result; in isAtReturn()
94 v8::Local<v8::Object> JavaScriptCallFrame::details() const { in details()
97 v8::Local<v8::Context> context = in details()
98 v8::Local<v8::Context>::New(m_isolate, m_debuggerContext); in details()
99 v8::Local<v8::Object> callFrame = in details()
100 v8::Local<v8::Object>::New(m_isolate, m_callFrame); in details()
101 v8::Local<v8::Function> func = v8::Local<v8::Function>::Cast( in details()
104 return v8::Local<v8::Object>::Cast( in details()
109 v8::Local<v8::Value> expression) { in evaluate()
112 v8::Local<v8::Context> context = in evaluate()
113 v8::Local<v8::Context>::New(m_isolate, m_debuggerContext); in evaluate()
114 v8::Local<v8::Object> callFrame = in evaluate()
115 v8::Local<v8::Object>::New(m_isolate, m_callFrame); in evaluate()
116 v8::Local<v8::Function> evalFunction = v8::Local<v8::Function>::Cast( in evaluate()
125 v8::Local<v8::Context> context = in restart()
126 v8::Local<v8::Context>::New(m_isolate, m_debuggerContext); in restart()
127 v8::Local<v8::Object> callFrame = in restart()
128 v8::Local<v8::Object>::New(m_isolate, m_callFrame); in restart()
129 v8::Local<v8::Function> restartFunction = v8::Local<v8::Function>::Cast( in restart()
140 int scopeNumber, v8::Local<v8::Value> variableName, in setVariableValue()
141 v8::Local<v8::Value> newValue) { in setVariableValue()
144 v8::Local<v8::Context> context = in setVariableValue()
145 v8::Local<v8::Context>::New(m_isolate, m_debuggerContext); in setVariableValue()
146 v8::Local<v8::Object> callFrame = in setVariableValue()
147 v8::Local<v8::Object>::New(m_isolate, m_callFrame); in setVariableValue()
148 v8::Local<v8::Function> setVariableValueFunction = in setVariableValue()
149 v8::Local<v8::Function>::Cast( in setVariableValue()
154 v8::Local<v8::Value> argv[] = { in setVariableValue()
155 v8::Local<v8::Value>(v8::Integer::New(m_isolate, scopeNumber)), in setVariableValue()