Lines Matching refs:m_pIsolate
97 m_parent(pContext->m_pIsolate), in CFXJSE_ScopeUtil_IsolateHandleContext()
98 m_cscope(v8::Local<v8::Context>::New(pContext->m_pIsolate, in CFXJSE_ScopeUtil_IsolateHandleContext()
100 v8::Isolate* GetIsolate() { return m_context->m_pIsolate; } in GetIsolate()
102 return v8::Local<v8::Context>::New(m_context->m_pIsolate, in GetLocalContext()
191 CFXJSE_Context::CFXJSE_Context(v8::Isolate* pIsolate) : m_pIsolate(pIsolate) {} in CFXJSE_Context()
196 auto pValue = pdfium::MakeUnique<CFXJSE_Value>(m_pIsolate); in GetGlobalObject()
199 v8::Local<v8::Context>::New(m_pIsolate, m_hContext); in GetGlobalObject()
206 return v8::Local<v8::Context>::New(m_pIsolate, m_hContext); in GetContext()
231 v8::TryCatch trycatch(m_pIsolate); in ExecuteScript()
233 v8::String::NewFromUtf8(m_pIsolate, szScript); in ExecuteScript()
240 lpRetValue->m_hValue.Reset(m_pIsolate, hValue); in ExecuteScript()
245 lpRetValue->m_hValue.Reset(m_pIsolate, in ExecuteScript()
246 CreateReturnValue(m_pIsolate, trycatch)); in ExecuteScript()
252 v8::Local<v8::Value>::New(m_pIsolate, lpNewThisObject->m_hValue); in ExecuteScript()
255 m_pIsolate, "(function () { return eval(arguments[0]); })")); in ExecuteScript()
265 lpRetValue->m_hValue.Reset(m_pIsolate, hValue); in ExecuteScript()
270 lpRetValue->m_hValue.Reset(m_pIsolate, in ExecuteScript()
271 CreateReturnValue(m_pIsolate, trycatch)); in ExecuteScript()