Home
last modified time | relevance | path

Searched refs:m_pValue (Results 1 – 8 of 8) sorted by relevance

/external/pdfium/fpdfsdk/javascript/
DJS_Value.cpp39 : m_pValue(pValue) {} in CJS_Value()
42 : m_pValue(pRuntime->NewNumber(iValue)) {} in CJS_Value()
45 : m_pValue(pRuntime->NewBoolean(bValue)) {} in CJS_Value()
48 : m_pValue(pRuntime->NewNumber(fValue)) {} in CJS_Value()
51 : m_pValue(pRuntime->NewNumber(dValue)) {} in CJS_Value()
55 m_pValue = pObj->ToV8Object(); in CJS_Value()
59 : m_pValue(pRuntime->NewString(pWstr)) {} in CJS_Value()
62 : m_pValue(pRuntime->NewString(CFX_WideString::FromLocal(pStr).c_str())) {} in CJS_Value()
65 : m_pValue(array.ToV8Array(pRuntime)) {} in CJS_Value()
68 : m_pValue(date.ToV8Date(pRuntime)) {} in CJS_Value()
[all …]
DJS_EventHandler.cpp31 m_pValue(nullptr), in CJS_EventHandler()
155 m_pValue = (CFX_WideString*)&Value; in OnField_Focus()
167 m_pValue = (CFX_WideString*)&Value; in OnField_Blur()
193 m_pValue = &Value; in OnField_Keystroke()
215 m_pValue = &Value; in OnField_Validate()
228 m_pValue = &Value; in OnField_Calculate()
239 m_pValue = &Value; in OnField_Format()
391 m_pValue = nullptr; in Initial()
644 return *m_pValue; in Value()
DPublicMethods.cpp765 if (!pEvent->m_pValue) in AFNumber_Format()
909 if (!pEvent->m_pValue) in AFNumber_Keystroke()
1011 if (!pEvent->m_pValue) in AFPercent_Format()
1110 if (!pEvent->m_pValue) in AFDate_FormatEx()
1210 if (!pEvent->m_pValue) in AFDate_KeystrokeEx()
1368 if (!pEvent->m_pValue) in AFSpecial_Format()
1408 if (!pEvent->m_pValue) in AFSpecial_KeystrokeEx()
1491 if (!pEvent->m_pValue) in AFSpecial_Keystroke()
1531 if (pEventHandler->m_pValue) in AFMergeChange()
1707 if (pContext->GetEventHandler()->m_pValue) in AFSimple_Calculate()
[all …]
DJS_Value.h56 Type GetType() const { return GetValueType(m_pValue); } in GetType()
79 v8::Local<v8::Value> m_pValue;
DJS_EventHandler.h186 CFX_WideString* m_pValue; variable
Devent.cpp286 if (!pEvent->m_pValue) in value()
/external/pdfium/xfa/fxfa/fm2js/
Dxfa_fm2jscontext.h469 std::unique_ptr<CFXJSE_Value> m_pValue; variable
Dxfa_fm2jscontext.cpp6366 m_pValue(pdfium::MakeUnique<CFXJSE_Value>(pScriptIsolate)), in CXFA_FM2JSContext()
6368 m_pValue.get()->SetNull(); in CXFA_FM2JSContext()
6369 m_pValue.get()->SetObject(this, m_pFMClass); in CXFA_FM2JSContext()
6375 pValue->Assign(m_pValue.get()); in GlobalPropertyGetter()