Home | History | Annotate | Download | only in parser

Lines Matching refs:pValue

21 void StringProperty(CFXJSE_Value* pValue,
25 wsValue = pValue->ToWideString();
28 pValue->SetString(wsValue.UTF8Encode().AsStringC());
31 void InterProperty(CFXJSE_Value* pValue, int32_t& iValue, bool bSetting) {
33 iValue = pValue->ToInteger();
36 pValue->SetInteger(iValue);
39 void BooleanProperty(CFXJSE_Value* pValue, bool& bValue, bool bSetting) {
41 bValue = pValue->ToBoolean();
44 pValue->SetBoolean(bValue);
57 void CScript_EventPseudoModel::Property(CFXJSE_Value* pValue,
70 BooleanProperty(pValue, pEventParam->m_bCancelAction, bSetting);
73 StringProperty(pValue, pEventParam->m_wsChange, bSetting);
76 InterProperty(pValue, pEventParam->m_iCommitKey, bSetting);
79 StringProperty(pValue, pEventParam->m_wsFullText, bSetting);
82 BooleanProperty(pValue, pEventParam->m_bKeyDown, bSetting);
85 BooleanProperty(pValue, pEventParam->m_bModifier, bSetting);
88 StringProperty(pValue, pEventParam->m_wsNewContentType, bSetting);
91 StringProperty(pValue, pEventParam->m_wsNewText, bSetting);
94 StringProperty(pValue, pEventParam->m_wsPrevContentType, bSetting);
97 StringProperty(pValue, pEventParam->m_wsPrevText, bSetting);
100 BooleanProperty(pValue, pEventParam->m_bReenter, bSetting);
103 InterProperty(pValue, pEventParam->m_iSelEnd, bSetting);
106 InterProperty(pValue, pEventParam->m_iSelStart, bSetting);
109 BooleanProperty(pValue, pEventParam->m_bShift, bSetting);
112 StringProperty(pValue, pEventParam->m_wsSoapFaultCode, bSetting);
115 StringProperty(pValue, pEventParam->m_wsSoapFaultString, bSetting);
123 void CScript_EventPseudoModel::Change(CFXJSE_Value* pValue,
126 Property(pValue, XFA_Event::Change, bSetting);
128 void CScript_EventPseudoModel::CommitKey(CFXJSE_Value* pValue,
131 Property(pValue, XFA_Event::CommitKey, bSetting);
133 void CScript_EventPseudoModel::FullText(CFXJSE_Value* pValue,
136 Property(pValue, XFA_Event::FullText, bSetting);
138 void CScript_EventPseudoModel::KeyDown(CFXJSE_Value* pValue,
141 Property(pValue, XFA_Event::Keydown, bSetting);
143 void CScript_EventPseudoModel::Modifier(CFXJSE_Value* pValue,
146 Property(pValue, XFA_Event::Modifier, bSetting);
148 void CScript_EventPseudoModel::NewContentType(CFXJSE_Value* pValue,
151 Property(pValue, XFA_Event::NewContentType, bSetting);
153 void CScript_EventPseudoModel::NewText(CFXJSE_Value* pValue,
156 Property(pValue, XFA_Event::NewText, bSetting);
158 void CScript_EventPseudoModel::PrevContentType(CFXJSE_Value* pValue,
161 Property(pValue, XFA_Event::PreviousContentType, bSetting);
163 void CScript_EventPseudoModel::PrevText(CFXJSE_Value* pValue,
166 Property(pValue, XFA_Event::PreviousText, bSetting);
168 void CScript_EventPseudoModel::Reenter(CFXJSE_Value* pValue,
171 Property(pValue, XFA_Event::Reenter, bSetting);
173 void CScript_EventPseudoModel::SelEnd(CFXJSE_Value* pValue,
176 Property(pValue, XFA_Event::SelectionEnd, bSetting);
178 void CScript_EventPseudoModel::SelStart(CFXJSE_Value* pValue,
181 Property(pValue, XFA_Event::SelectionStart, bSetting);
183 void CScript_EventPseudoModel::Shift(CFXJSE_Value* pValue,
186 Property(pValue, XFA_Event::Shift, bSetting);
188 void CScript_EventPseudoModel::SoapFaultCode(CFXJSE_Value* pValue,
191 Property(pValue, XFA_Event::SoapFaultCode, bSetting);
193 void CScript_EventPseudoModel::SoapFaultString(CFXJSE_Value* pValue,
196 Property(pValue, XFA_Event::SoapFaultString, bSetting);
198 void CScript_EventPseudoModel::Target(CFXJSE_Value* pValue,
201 Property(pValue, XFA_Event::Target, bSetting);