• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/ole/

Lines Matching refs:noArgs

85         wxVariant& retValue, int noArgs, wxVariant args[], const wxVariant* ptrArgs[]) const
102 return obj.Invoke(rest, action, retValue, noArgs, args, ptrArgs);
113 for (i = 0; i < noArgs; i++)
166 VARIANTARG* oleArgs = new VARIANTARG[noArgs];
167 for (i = 0; i < noArgs; i++)
170 if (!wxConvertVariantToOle(INVOKEARG((noArgs-1) - i), oleArgs[i]))
181 dispparams.cArgs = noArgs;
196 for (i = 0; i < noArgs; i++)
232 wxVariant wxAutomationObject::CallMethod(const wxString& member, int noArgs, wxVariant args[])
235 if (!Invoke(member, DISPATCH_METHOD, retVariant, noArgs, args))
242 wxVariant wxAutomationObject::CallMethodArray(const wxString& member, int noArgs, const wxVariant **args)
245 if (!Invoke(member, DISPATCH_METHOD, retVariant, noArgs, NULL, args))
299 wxVariant wxAutomationObject::GetPropertyArray(const wxString& property, int noArgs, const wxVariant **args) const
302 if (!Invoke(property, DISPATCH_PROPERTYGET, retVariant, noArgs, NULL, args))
308 wxVariant wxAutomationObject::GetProperty(const wxString& property, int noArgs, wxVariant args[]) const
311 if (!Invoke(property, DISPATCH_PROPERTYGET, retVariant, noArgs, args))
364 bool wxAutomationObject::PutProperty(const wxString& property, int noArgs, wxVariant args[])
367 if (!Invoke(property, DISPATCH_PROPERTYPUT, retVariant, noArgs, args))
374 bool wxAutomationObject::PutPropertyArray(const wxString& property, int noArgs, const wxVariant **args)
377 if (!Invoke(property, DISPATCH_PROPERTYPUT, retVariant, noArgs, NULL, args))
432 WXIDISPATCH* wxAutomationObject::GetDispatchProperty(const wxString& property, int noArgs, wxVariant args[]) const
435 if (Invoke(property, DISPATCH_PROPERTYGET, retVariant, noArgs, args))
450 WXIDISPATCH* wxAutomationObject::GetDispatchProperty(const wxString& property, int noArgs, const wxVariant **args) const
453 if (Invoke(property, DISPATCH_PROPERTYGET, retVariant, noArgs, NULL, args))
466 bool wxAutomationObject::GetObject(wxAutomationObject& obj, const wxString& property, int noArgs, wxVariant args[]) const
468 WXIDISPATCH* dispatch = GetDispatchProperty(property, noArgs, args);
479 bool wxAutomationObject::GetObject(wxAutomationObject& obj, const wxString& property, int noArgs, const wxVariant **args) const
481 WXIDISPATCH* dispatch = GetDispatchProperty(property, noArgs, args);