Lines Matching refs:Local
58 v8::Local<v8::Object> CreateReturnValue(v8::Isolate* pIsolate, in CreateReturnValue()
60 v8::Local<v8::Object> hReturnValue = v8::Object::New(pIsolate); in CreateReturnValue()
64 v8::Local<v8::Message> hMessage = trycatch->Message(); in CreateReturnValue()
68 v8::Local<v8::Context> context = pIsolate->GetCurrentContext(); in CreateReturnValue()
69 v8::Local<v8::Value> hException = trycatch->Exception(); in CreateReturnValue()
71 v8::Local<v8::String> hNameStr = in CreateReturnValue()
74 v8::Local<v8::Value> hValue = in CreateReturnValue()
79 v8::Local<v8::String> hErrorStr = in CreateReturnValue()
85 v8::Local<v8::String> hMessageStr = in CreateReturnValue()
95 v8::Local<v8::String> hErrorStr = in CreateReturnValue()
104 v8::Local<v8::String> source = in CreateReturnValue()
105 hMessage->GetSourceLine(context).FromMaybe(v8::Local<v8::String>()); in CreateReturnValue()
131 void FXJSE_UpdateProxyBinding(v8::Local<v8::Object> hObject) { in FXJSE_UpdateProxyBinding()
140 void FXJSE_UpdateObjectBinding(v8::Local<v8::Object> hObject, in FXJSE_UpdateObjectBinding()
148 void FXJSE_ClearObjectBinding(v8::Local<v8::Object> hObject) { in FXJSE_ClearObjectBinding()
156 v8::Local<v8::Object> hJSObject) { in FXJSE_RetrieveObjectBinding()
161 v8::Local<v8::Object> hObject = hJSObject; in FXJSE_RetrieveObjectBinding()
164 v8::Local<v8::Value> hProtoObject = hObject->GetPrototype(); in FXJSE_RetrieveObjectBinding()
187 v8::Local<v8::ObjectTemplate> hObjectTemplate; in Create()
192 v8::Local<v8::FunctionTemplate> hFunctionTemplate = in Create()
193 v8::Local<v8::FunctionTemplate>::New(pIsolate, in Create()
205 v8::Local<v8::Context> hNewContext = in Create()
208 v8::Local<v8::Object> pThisProxy = hNewContext->Global(); in Create()
211 v8::Local<v8::Object> pThis = pThisProxy->GetPrototype().As<v8::Object>(); in Create()
214 v8::Local<v8::Context> hRootContext = v8::Local<v8::Context>::New( in Create()
228 v8::Local<v8::Context> hContext = in GetGlobalObject()
229 v8::Local<v8::Context>::New(GetIsolate(), m_hContext); in GetGlobalObject()
230 v8::Local<v8::Object> hGlobalObject = in GetGlobalObject()
236 v8::Local<v8::Context> CFXJSE_Context::GetContext() { in GetContext()
237 return v8::Local<v8::Context>::New(GetIsolate(), m_hContext); in GetContext()
262 v8::Local<v8::Context> hContext = GetIsolate()->GetCurrentContext(); in ExecuteScript()
264 v8::Local<v8::String> hScriptString = in ExecuteScript()
269 v8::Local<v8::Script> hScript; in ExecuteScript()
272 v8::Local<v8::Value> hValue; in ExecuteScript()
285 v8::Local<v8::Value> hNewThis = v8::Local<v8::Value>::New( in ExecuteScript()
288 v8::Local<v8::String> hEval = in ExecuteScript()
293 v8::Local<v8::Script> hWrapper = in ExecuteScript()
295 v8::Local<v8::Value> hWrapperValue; in ExecuteScript()
298 v8::Local<v8::Function> hWrapperFn = hWrapperValue.As<v8::Function>(); in ExecuteScript()
299 v8::Local<v8::Value> rgArgs[] = {hScriptString}; in ExecuteScript()
300 v8::Local<v8::Value> hValue; in ExecuteScript()
314 v8::Local<v8::Message> message = trycatch.Message(); in ExecuteScript()
316 v8::Local<v8::Context> context(GetIsolate()->GetCurrentContext()); in ExecuteScript()