HomeSort by relevance Sort by last modified time
    Searched defs:pIsolate (Results 1 - 8 of 8) sorted by null

  /external/pdfium/fxjs/
cfxjse_runtimedata.cpp 24 void Runtime_DisposeCallback(v8::Isolate* pIsolate, bool bOwned) {
25 if (FXJS_PerIsolateData* pData = FXJS_PerIsolateData::Get(pIsolate))
28 pIsolate->Dispose();
63 v8::Isolate* pIsolate = v8::Isolate::New(params);
64 ASSERT(pIsolate && CFXJSE_IsolateTracker::g_pInstance);
65 CFXJSE_IsolateTracker::g_pInstance->Append(pIsolate, std::move(allocator));
66 return pIsolate;
69 void FXJSE_Runtime_Release(v8::Isolate* pIsolate) {
70 if (!pIsolate)
72 CFXJSE_IsolateTracker::g_pInstance->Remove(pIsolate, Runtime_DisposeCallback)
    [all...]
cfxjse_class.cpp 162 v8::Isolate* pIsolate = pValue->GetIsolate();
163 v8::HandleScope hscope(pIsolate);
165 v8::ObjectTemplate::New(pIsolate);
173 pIsolate, reinterpret_cast<const char*>(szPropName.raw_str()),
232 v8::Isolate* pIsolate = info.GetIsolate();
233 v8::HandleScope scope(pIsolate);
253 v8::Isolate* pIsolate = info.GetIsolate();
254 v8::HandleScope scope(pIsolate);
305 v8::Isolate* pIsolate = info.GetIsolate();
306 v8::Local<v8::Array> newArray = v8::Array::New(pIsolate, lpClass->propNum)
    [all...]
cfxjse_value.cpp 56 v8::Isolate* pIsolate = v8::Isolate::GetCurrent();
57 ASSERT(pIsolate);
59 CFXJSE_ScopeUtil_IsolateHandleRootContext scope(pIsolate);
61 pIsolate, utf8Message.c_str(), v8::String::kNormalString,
64 pIsolate->ThrowException(hError);
67 CFXJSE_Value::CFXJSE_Value(v8::Isolate* pIsolate) : m_pIsolate(pIsolate) {}
fxjs_v8.cpp 55 static int MaxID(v8::Isolate* pIsolate) {
56 return FXJS_PerIsolateData::Get(pIsolate)->m_ObjectDefnArray.size();
59 static CFXJS_ObjDefinition* ForID(v8::Isolate* pIsolate, int id) {
61 return FXJS_PerIsolateData::Get(pIsolate)->m_ObjectDefnArray[id].get();
126 v8::Isolate* pIsolate) {
127 int maxID = CFXJS_ObjDefinition::MaxID(pIsolate);
129 CFXJS_ObjDefinition* pObjDef = CFXJS_ObjDefinition::ForID(pIsolate, i);
135 v8::ObjectTemplate::New(pIsolate);
137 v8::Symbol::GetToStringTag(pIsolate),
138 v8::String::NewFromUtf8(pIsolate, "global", v8::NewStringType::kNormal
    [all...]
  /external/pdfium/fpdfsdk/javascript/
cjs_runtime.cpp 54 CJS_Runtime* CJS_Runtime::CurrentRuntimeFromIsolate(v8::Isolate* pIsolate) {
56 CFXJS_Engine::CurrentEngineFromIsolate(pIsolate));
63 v8::Isolate* pIsolate = nullptr;
75 m_isolateManaged = FXJS_GetIsolate(&pIsolate);
76 SetIsolate(pIsolate);
79 v8::Isolate::Scope isolate_scope(pIsolate);
80 v8::HandleScope handle_scope(pIsolate);
247 v8::Isolate* pIsolate = GetIsolate();
248 v8::Isolate::Scope isolate_scope(pIsolate);
249 v8::HandleScope handle_scope(pIsolate);
    [all...]
JS_Value.cpp 136 v8::Isolate* pIsolate = pRuntime->GetIsolate();
137 v8::TryCatch try_catch(pIsolate);
139 m_pValue->ToNumber(pIsolate->GetCurrentContext());
658 v8::Isolate* pIsolate = v8::Isolate::GetCurrent();
659 v8::Isolate::Scope isolate_scope(pIsolate);
660 v8::HandleScope scope(pIsolate);
662 v8::Local<v8::Context> context = pIsolate->GetCurrentContext();
667 ->Get(context, v8::String::NewFromUtf8(pIsolate, "Date",
673 v = o->Get(context, v8::String::NewFromUtf8(pIsolate, "parse",
681 CJS_Runtime::CurrentRuntimeFromIsolate(pIsolate)->NewString
    [all...]
  /external/pdfium/xfa/fxfa/parser/
xfa_resolvenode_rs.h 48 v8::Isolate* pIsolate = valueArray.m_pIsolate;
50 std::unique_ptr<CFXJSE_Value> pValue(new CFXJSE_Value(pIsolate));
  /external/pdfium/xfa/fxfa/fm2js/
xfa_fm2jscontext.cpp 542 v8::Isolate* pIsolate = ToJSContext(pThis, nullptr)->GetScriptRuntime();
556 auto lengthValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate);
561 auto propertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate);
564 auto jsObjectValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate);
568 auto defaultPropValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate);
579 auto newPropertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate);
623 v8::Isolate* pIsolate = pContext->GetScriptRuntime();
631 auto lengthValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate);
640 auto propertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate);
641 auto jsObjectValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate);
    [all...]

Completed in 361 milliseconds