• Home
  • Raw
  • Download

Lines Matching refs:vp

59 FX_BOOL event::change(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError)  in change()  argument
67 if (vp.IsSetting()) in change()
69 if (vp.GetType() == VT_string) in change()
70 vp >> wChange; in change()
74 vp << wChange; in change()
79 FX_BOOL event::changeEx(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) in changeEx() argument
81 if (!vp.IsGetting())return FALSE; in changeEx()
88 vp << pEvent->ChangeEx(); in changeEx()
92 FX_BOOL event::commitKey(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) in commitKey() argument
94 if (!vp.IsGetting())return FALSE; in commitKey()
101 vp << pEvent->CommitKey(); in commitKey()
105 FX_BOOL event::fieldFull(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) in fieldFull() argument
112 if (!vp.IsGetting() && wcscmp((const wchar_t*)pEvent->Name(),L"Keystroke") != 0) in fieldFull()
116 vp << TRUE; in fieldFull()
118 vp << FALSE; in fieldFull()
122 FX_BOOL event::keyDown(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) in keyDown() argument
124 if (!vp.IsGetting())return FALSE; in keyDown()
132 vp << TRUE; in keyDown()
134 vp << FALSE; in keyDown()
138 FX_BOOL event::modifier(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) in modifier() argument
140 if (!vp.IsGetting())return FALSE; in modifier()
148 vp << TRUE; in modifier()
150 vp << FALSE; in modifier()
154 FX_BOOL event::name(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) in name() argument
156 if (!vp.IsGetting())return FALSE; in name()
163 vp << pEvent->Name(); in name()
167 FX_BOOL event::rc(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) in rc() argument
175 if (vp.IsSetting()) in rc()
177 vp>>bRc; in rc()
181 vp<<bRc; in rc()
186 FX_BOOL event::richChange(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) in richChange() argument
189 if (vp.IsSetting()) in richChange()
199 FX_BOOL event::richChangeEx(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) in richChangeEx() argument
202 if (vp.IsSetting()) in richChangeEx()
213 FX_BOOL event::richValue(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) in richValue() argument
216 if (vp.IsSetting()) in richValue()
226 FX_BOOL event::selEnd(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) in selEnd() argument
239 if (vp.IsSetting()) in selEnd()
241 vp >> iSelEnd; in selEnd()
245 vp << iSelEnd; in selEnd()
250 FX_BOOL event::selStart(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) in selStart() argument
262 if (vp.IsSetting()) in selStart()
264 vp >> iSelStart; in selStart()
268 vp << iSelStart; in selStart()
273 FX_BOOL event::shift(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) in shift() argument
275 if (!vp.IsGetting())return FALSE; in shift()
283 vp << TRUE; in shift()
285 vp << FALSE; in shift()
289 FX_BOOL event::source(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) in source() argument
291 if (!vp.IsGetting())return FALSE; in source()
298 vp << pEvent->Source()->GetJSObject(); in source()
302 FX_BOOL event::target(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) in target() argument
304 if (!vp.IsGetting())return FALSE; in target()
311 vp<<pEvent->Target_Field()->GetJSObject(); in target()
315 FX_BOOL event::targetName(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) in targetName() argument
317 if (!vp.IsGetting())return FALSE; in targetName()
324 vp << pEvent->TargetName(); in targetName()
328 FX_BOOL event::type(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) in type() argument
330 if (!vp.IsGetting())return FALSE; in type()
337 vp << pEvent->Type(); in type()
341 FX_BOOL event::value(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) in value() argument
353 if (vp.IsSetting()) in value()
355 vp >> val; in value()
359 vp << val; in value()
364 FX_BOOL event::willCommit(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) in willCommit() argument
366 if (!vp.IsGetting())return FALSE; in willCommit()
374 vp << TRUE; in willCommit()
376 vp << FALSE; in willCommit()