Home
last modified time | relevance | path

Searched refs:m_hValue (Results 1 – 6 of 6) sorted by relevance

/external/pdfium/xfa/src/fxjse/src/
Dvalue.h21 if (m_hValue.IsEmpty()) { in IsUndefined()
26 v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsUndefined()
30 if (m_hValue.IsEmpty()) { in IsNull()
35 v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsNull()
39 if (m_hValue.IsEmpty()) { in IsBoolean()
44 v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsBoolean()
48 if (m_hValue.IsEmpty()) { in IsString()
53 v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsString()
57 if (m_hValue.IsEmpty()) { in IsNumber()
62 v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsNumber()
[all …]
Dvalue.cpp274 ASSERT(!m_hValue.IsEmpty()); in ToObject()
276 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in ToObject()
324 m_hValue.Reset(m_pIsolate, hValue); in SetFloat()
333 m_hValue.Reset(m_pIsolate, hObject); in SetHostObject()
346 m_hValue.Reset(m_pIsolate, hArrayObject); in SetArray()
351 m_hValue.Reset(m_pIsolate, hDate); in SetDate()
357 v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in SetObjectProperty()
373 v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in GetObjectProperty()
388 v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in SetObjectProperty()
400 v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in GetObjectProperty()
[all …]
Dcontext.cpp204 lpRetValue->m_hValue.Reset(m_pIsolate, hValue); in ExecuteScript()
210 lpRetValue->m_hValue.Reset(m_pIsolate, in ExecuteScript()
216 v8::Local<v8::Value>::New(m_pIsolate, lpNewThisObject->m_hValue); in ExecuteScript()
230 lpRetValue->m_hValue.Reset(m_pIsolate, hValue); in ExecuteScript()
236 lpRetValue->m_hValue.Reset(m_pIsolate, in ExecuteScript()
Ddynprop.cpp385 v8::Local<v8::Value>::New(pIsolate, pValue->m_hValue).As<v8::Object>(); in SetUpDynPropHandler()
/external/pdfium/xfa/src/fxfa/src/fm2js/
Dxfa_fm2jscontext.h446 FXJSE_HVALUE m_hValue; variable
Dxfa_fm2jscontext.cpp7159 if (m_hValue) { in ~CXFA_FM2JSContext()
7160 FXJSE_Value_Release(m_hValue); in ~CXFA_FM2JSContext()
7161 m_hValue = NULL; in ~CXFA_FM2JSContext()
7181 m_hValue = FXJSE_Value_Create(hScriptRuntime); in Initialize()
7182 FXJSE_Value_SetNull(m_hValue); in Initialize()
7183 FXJSE_Value_SetObject(m_hValue, this, m_hFMClass); in Initialize()
7186 FXJSE_Value_Set(hValue, m_hValue); in GlobalPropertyGetter()