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

  /external/pdfium/testing/
js_embedder_test.cpp 10 m_pIsolate(nullptr) {}
17 m_pIsolate = v8::Isolate::New(params);
19 EmbedderTest::SetExternalIsolate(m_pIsolate);
22 v8::Isolate::Scope isolate_scope(m_pIsolate);
23 v8::HandleScope handle_scope(m_pIsolate);
24 FXJS_PerIsolateData::SetUp(m_pIsolate);
25 m_Engine = pdfium::MakeUnique<CFXJS_Engine>(m_pIsolate);
33 m_pIsolate->Dispose();
34 m_pIsolate = nullptr;
38 return m_pIsolate;
    [all...]
js_embedder_test.h 28 v8::Isolate* m_pIsolate;
embedder_test.cpp 102 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);
96 CFXJSE_ScopeUtil_IsolateHandleRootContext scope(m_pIsolate);
99 v8::Local<v8::FunctionTemplate>::New(m_pIsolate, lpClass->m_hTemplate);
102 m_hValue.Reset(m_pIsolate, hObject);
107 CFXJSE_ScopeUtil_IsolateHandleRootContext scope(m_pIsolate);
108 v8::Local<v8::Array> hArrayObject = v8::Array::New(m_pIsolate, values.size());
112 m_pIsolate, v.get()->DirectGetValue()));
114 m_hValue.Reset(m_pIsolate, hArrayObject)
    [all...]
cfxjse_context.cpp 50 m_parent(pContext->m_pIsolate),
51 m_cscope(v8::Local<v8::Context>::New(pContext->m_pIsolate,
53 v8::Isolate* GetIsolate() { return m_context->m_pIsolate; }
55 return v8::Local<v8::Context>::New(m_context->m_pIsolate,
185 CFXJSE_Context::CFXJSE_Context(v8::Isolate* pIsolate) : m_pIsolate(pIsolate) {}
190 std::unique_ptr<CFXJSE_Value> pValue(new CFXJSE_Value(m_pIsolate));
194 v8::Local<v8::Context>::New(m_pIsolate, m_hContext);
209 v8::TryCatch trycatch(m_pIsolate);
211 v8::String::NewFromUtf8(m_pIsolate, szScript);
218 lpRetValue->m_hValue.Reset(m_pIsolate, hValue)
    [all...]
cfxjse_runtimedata.h 22 v8::Isolate* m_pIsolate;
cfxjse_value.h 78 v8::Isolate* GetIsolate() const { return m_pIsolate; }
81 m_hValue.Reset(m_pIsolate, hValue);
86 m_hValue.Reset(m_pIsolate, lpValue->m_hValue);
100 v8::Isolate* m_pIsolate;
cfxjse_context.h 30 v8::Isolate* GetRuntime() { return m_pIsolate; }
48 v8::Isolate* m_pIsolate;
cfxjse_runtimedata.cpp 76 : 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_class.cpp 329 v8::Isolate* pIsolate = lpContext->m_pIsolate;
401 pClass->m_hTemplate.Reset(lpContext->m_pIsolate, hFunctionTemplate);
  /external/pdfium/xfa/fxfa/parser/
cxfa_valuearray.h 20 v8::Isolate* const m_pIsolate;
cxfa_valuearray.cpp 12 : m_pIsolate(pIsolate) {}
xfa_resolvenode_rs.h 48 v8::Isolate* pIsolate = valueArray.m_pIsolate;
cxfa_scriptcontext.h 45 v8::Isolate* GetRuntime() const { return m_pIsolate; }
108 v8::Isolate* m_pIsolate;
cxfa_scriptcontext.cpp 119 m_pIsolate(nullptr),
138 m_pIsolate = pIsolate;
154 new CXFA_FM2JSContext(m_pIsolate, m_JsContext.get(), m_pDocument));
442 m_JsContext.reset(CFXJSE_Context::Create(m_pIsolate, &GlobalClassDescriptor,
454 CFXJSE_Context::Create(m_pIsolate, &VariablesClassDescriptor,
494 std::unique_ptr<CFXJSE_Value> hRetValue(new CFXJSE_Value(m_pIsolate));
526 std::unique_ptr<CFXJSE_Value> hVariableValue(new CFXJSE_Value(m_pIsolate));
550 std::unique_ptr<CFXJSE_Value> hProp(new CFXJSE_Value(m_pIsolate));
651 std::unique_ptr<CFXJSE_Value> pValue(new CFXJSE_Value(m_pIsolate));
733 std::unique_ptr<CFXJSE_Value> jsValue(new CFXJSE_Value(m_pIsolate));
    [all...]
  /external/pdfium/fpdfsdk/javascript/
JS_Object.h 42 v8::Local<v8::Object> ToV8Object() { return m_pV8Object.Get(m_pIsolate); }
48 v8::Isolate* GetIsolate() const { return m_pIsolate; }
53 v8::Isolate* m_pIsolate;
JS_Object.cpp 30 m_pIsolate = pObject->GetIsolate();
31 m_pV8Object.Reset(m_pIsolate, pObject);
  /external/pdfium/xfa/fxfa/fm2js/
xfa_fm2jscontext.h 454 v8::Isolate* GetScriptRuntime() const { return m_pIsolate; }
467 v8::Isolate* m_pIsolate;
  /external/pdfium/public/
fpdfview.h 168 void* m_pIsolate;
    [all...]
  /external/pdfium/samples/
pdfium_test.cc 959 config.m_pIsolate = nullptr;
  /external/pdfium/fpdfsdk/
fpdfview.cpp 408 IJS_Runtime::Initialize(cfg->m_v8EmbedderSlot, cfg->m_pIsolate);
    [all...]

Completed in 299 milliseconds