Lines Matching refs:pValue

20 void StringProperty(CFXJSE_Value* pValue, WideString& wsValue, bool bSetting) {  in StringProperty()  argument
22 wsValue = pValue->ToWideString(); in StringProperty()
25 pValue->SetString(wsValue.UTF8Encode().AsStringView()); in StringProperty()
28 void InterProperty(CFXJSE_Value* pValue, int32_t& iValue, bool bSetting) { in InterProperty() argument
30 iValue = pValue->ToInteger(); in InterProperty()
33 pValue->SetInteger(iValue); in InterProperty()
36 void BooleanProperty(CFXJSE_Value* pValue, bool& bValue, bool bSetting) { in BooleanProperty() argument
38 bValue = pValue->ToBoolean(); in BooleanProperty()
41 pValue->SetBoolean(bValue); in BooleanProperty()
57 void CJX_EventPseudoModel::change(CFXJSE_Value* pValue, in change() argument
60 Property(pValue, XFA_Event::Change, bSetting); in change()
63 void CJX_EventPseudoModel::commitKey(CFXJSE_Value* pValue, in commitKey() argument
66 Property(pValue, XFA_Event::CommitKey, bSetting); in commitKey()
69 void CJX_EventPseudoModel::fullText(CFXJSE_Value* pValue, in fullText() argument
72 Property(pValue, XFA_Event::FullText, bSetting); in fullText()
75 void CJX_EventPseudoModel::keyDown(CFXJSE_Value* pValue, in keyDown() argument
78 Property(pValue, XFA_Event::Keydown, bSetting); in keyDown()
81 void CJX_EventPseudoModel::modifier(CFXJSE_Value* pValue, in modifier() argument
84 Property(pValue, XFA_Event::Modifier, bSetting); in modifier()
87 void CJX_EventPseudoModel::newContentType(CFXJSE_Value* pValue, in newContentType() argument
90 Property(pValue, XFA_Event::NewContentType, bSetting); in newContentType()
93 void CJX_EventPseudoModel::newText(CFXJSE_Value* pValue, in newText() argument
96 Property(pValue, XFA_Event::NewText, bSetting); in newText()
99 void CJX_EventPseudoModel::prevContentType(CFXJSE_Value* pValue, in prevContentType() argument
102 Property(pValue, XFA_Event::PreviousContentType, bSetting); in prevContentType()
105 void CJX_EventPseudoModel::prevText(CFXJSE_Value* pValue, in prevText() argument
108 Property(pValue, XFA_Event::PreviousText, bSetting); in prevText()
111 void CJX_EventPseudoModel::reenter(CFXJSE_Value* pValue, in reenter() argument
114 Property(pValue, XFA_Event::Reenter, bSetting); in reenter()
117 void CJX_EventPseudoModel::selEnd(CFXJSE_Value* pValue, in selEnd() argument
120 Property(pValue, XFA_Event::SelectionEnd, bSetting); in selEnd()
123 void CJX_EventPseudoModel::selStart(CFXJSE_Value* pValue, in selStart() argument
126 Property(pValue, XFA_Event::SelectionStart, bSetting); in selStart()
129 void CJX_EventPseudoModel::shift(CFXJSE_Value* pValue, in shift() argument
132 Property(pValue, XFA_Event::Shift, bSetting); in shift()
135 void CJX_EventPseudoModel::soapFaultCode(CFXJSE_Value* pValue, in soapFaultCode() argument
138 Property(pValue, XFA_Event::SoapFaultCode, bSetting); in soapFaultCode()
141 void CJX_EventPseudoModel::soapFaultString(CFXJSE_Value* pValue, in soapFaultString() argument
144 Property(pValue, XFA_Event::SoapFaultString, bSetting); in soapFaultString()
147 void CJX_EventPseudoModel::target(CFXJSE_Value* pValue, in target() argument
150 Property(pValue, XFA_Event::Target, bSetting); in target()
191 void CJX_EventPseudoModel::Property(CFXJSE_Value* pValue, in Property() argument
204 BooleanProperty(pValue, pEventParam->m_bCancelAction, bSetting); in Property()
207 StringProperty(pValue, pEventParam->m_wsChange, bSetting); in Property()
210 InterProperty(pValue, pEventParam->m_iCommitKey, bSetting); in Property()
213 StringProperty(pValue, pEventParam->m_wsFullText, bSetting); in Property()
216 BooleanProperty(pValue, pEventParam->m_bKeyDown, bSetting); in Property()
219 BooleanProperty(pValue, pEventParam->m_bModifier, bSetting); in Property()
222 StringProperty(pValue, pEventParam->m_wsNewContentType, bSetting); in Property()
225 StringProperty(pValue, pEventParam->m_wsNewText, bSetting); in Property()
228 StringProperty(pValue, pEventParam->m_wsPrevContentType, bSetting); in Property()
231 StringProperty(pValue, pEventParam->m_wsPrevText, bSetting); in Property()
234 BooleanProperty(pValue, pEventParam->m_bReenter, bSetting); in Property()
237 InterProperty(pValue, pEventParam->m_iSelEnd, bSetting); in Property()
240 InterProperty(pValue, pEventParam->m_iSelStart, bSetting); in Property()
243 BooleanProperty(pValue, pEventParam->m_bShift, bSetting); in Property()
246 StringProperty(pValue, pEventParam->m_wsSoapFaultCode, bSetting); in Property()
249 StringProperty(pValue, pEventParam->m_wsSoapFaultString, bSetting); in Property()