HomeSort by relevance Sort by last modified time
    Searched refs:m_pIsolate (Results 1 - 17 of 17) sorted by null

  /external/pdfium/testing/
js_embedder_test.cpp 18 m_pIsolate = v8::Isolate::New(params);
20 EmbedderTest::SetExternalIsolate(m_pIsolate);
23 v8::Isolate::Scope isolate_scope(m_pIsolate);
24 v8::HandleScope handle_scope(m_pIsolate);
25 FXJS_PerIsolateData::SetUp(m_pIsolate);
26 m_Engine = pdfium::MakeUnique<CFXJS_Engine>(m_pIsolate);
34 m_pIsolate->Dispose();
35 m_pIsolate = nullptr;
39 return m_pIsolate;
js_embedder_test.h 27 v8::Isolate* m_pIsolate = nullptr;
embedder_test.cpp 74 config.m_pIsolate = external_isolate_;
  /external/pdfium/fxjs/
cfxjse_value.cpp 67 CFXJSE_Value::CFXJSE_Value(v8::Isolate* pIsolate) : m_pIsolate(pIsolate) {}
74 CFXJSE_ScopeUtil_IsolateHandleRootContext scope(m_pIsolate);
75 v8::Local<v8::Value> pValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue);
86 CFXJSE_ScopeUtil_IsolateHandleRootContext scope(m_pIsolate);
88 v8::Local<v8::FunctionTemplate>::New(m_pIsolate, pClass->m_hTemplate);
91 m_hValue.Reset(m_pIsolate, hObject);
96 CFXJSE_ScopeUtil_IsolateHandleRootContext scope(m_pIsolate);
97 v8::Local<v8::Array> hArrayObject = v8::Array::New(m_pIsolate, values.size());
101 m_pIsolate, v.get()->DirectGetValue()));
103 m_hValue.Reset(m_pIsolate, hArrayObject)
    [all...]
cfxjse_context.cpp 97 m_parent(pContext->m_pIsolate),
98 m_cscope(v8::Local<v8::Context>::New(pContext->m_pIsolate,
100 v8::Isolate* GetIsolate() { return m_context->m_pIsolate; }
102 return v8::Local<v8::Context>::New(m_context->m_pIsolate,
191 CFXJSE_Context::CFXJSE_Context(v8::Isolate* pIsolate) : m_pIsolate(pIsolate) {}
196 auto pValue = pdfium::MakeUnique<CFXJSE_Value>(m_pIsolate);
199 v8::Local<v8::Context>::New(m_pIsolate, m_hContext);
206 return v8::Local<v8::Context>::New(m_pIsolate, m_hContext);
231 v8::TryCatch trycatch(m_pIsolate);
233 v8::String::NewFromUtf8(m_pIsolate, szScript)
    [all...]
cfxjse_runtimedata.h 22 v8::Isolate* m_pIsolate;
cfxjse_value.h 72 v8::Isolate* GetIsolate() const { return m_pIsolate; }
75 m_hValue.Reset(m_pIsolate, hValue);
80 m_hValue.Reset(m_pIsolate, lpValue->m_hValue);
94 v8::Isolate* m_pIsolate;
cjs_object.h 57 v8::Local<v8::Object> ToV8Object() { return m_pV8Object.Get(m_pIsolate); }
63 v8::Isolate* GetIsolate() const { return m_pIsolate; }
68 v8::Isolate* m_pIsolate;
cfxjse_context.h 30 v8::Isolate* GetIsolate() const { return m_pIsolate; }
48 v8::Isolate* m_pIsolate;
cjs_object.cpp 44 m_pIsolate = pObject->GetIsolate();
45 m_pV8Object.Reset(m_pIsolate, pObject);
cfxjse_runtimedata.cpp 15 : m_pIsolate(pIsolate) {}
fxjs_v8.cpp 73 m_pIsolate(isolate) {
98 FXJS_PerIsolateData* pData = FXJS_PerIsolateData::Get(m_pIsolate);
104 v8::EscapableHandleScope scope(m_pIsolate);
106 m_FunctionTemplate.Get(m_pIsolate);
111 v8::EscapableHandleScope scope(m_pIsolate);
112 return scope.Escape(m_Signature.Get(m_pIsolate));
120 v8::Isolate* m_pIsolate;
cfxjse_formcalc_context.h 426 v8::Isolate* GetScriptRuntime() const { return m_pIsolate; }
439 v8::Isolate* m_pIsolate;
  /external/pdfium/testing/libfuzzer/
pdf_fuzzer_init.cc 15 config.m_pIsolate = nullptr;
  /external/pdfium/public/
fpdfview.h 193 void* m_pIsolate;
    [all...]
  /external/pdfium/fpdfsdk/
fpdfview.cpp 483 IJS_Runtime::Initialize(cfg->m_v8EmbedderSlot, cfg->m_pIsolate);
    [all...]
  /external/pdfium/samples/
pdfium_test.cc     [all...]

Completed in 491 milliseconds