Lines Matching refs:pIsolate
65 CJS_Runtime* CJS_Runtime::CurrentRuntimeFromIsolate(v8::Isolate* pIsolate) { in CurrentRuntimeFromIsolate() argument
67 CFXJS_Engine::CurrentEngineFromIsolate(pIsolate)); in CurrentRuntimeFromIsolate()
74 v8::Isolate* pIsolate = nullptr; in CJS_Runtime() local
86 m_isolateManaged = FXJS_GetIsolate(&pIsolate); in CJS_Runtime()
87 SetIsolate(pIsolate); in CJS_Runtime()
90 v8::Isolate::Scope isolate_scope(pIsolate); in CJS_Runtime()
91 v8::HandleScope handle_scope(pIsolate); in CJS_Runtime()
254 v8::Isolate* pIsolate = GetIsolate(); in SetValueByName() local
255 v8::Isolate::Scope isolate_scope(pIsolate); in SetValueByName()
256 v8::HandleScope handle_scope(pIsolate); in SetValueByName()
262 v8::String::NewFromUtf8(pIsolate, utf8Name.unterminated_c_str(), in SetValueByName()
280 v8::Isolate* pIsolate = GetIsolate(); in MaybeCoerceToNumber() local
281 v8::TryCatch try_catch(pIsolate); in MaybeCoerceToNumber()
283 value->ToNumber(pIsolate->GetCurrentContext()); in MaybeCoerceToNumber()