Lines Matching refs:aScriptEvent
87 void SFURL_firing_impl( const ScriptEvent& aScriptEvent, Any* pRet, const Reference< frame::XModel … in SFURL_firing_impl() argument
90 ::rtl::OUStringToOString( aScriptEvent.ScriptCode, in SFURL_firing_impl()
134 inArgs = aScriptEvent.Arguments; in SFURL_firing_impl()
136 … Reference< provider::XScript > xScript = xScriptProvider->getScript( aScriptEvent.ScriptCode ); in SFURL_firing_impl()
171 virtual void firing_impl(const ScriptEvent& aScriptEvent, Any* pRet);
178 virtual void SAL_CALL firing(const ScriptEvent& aScriptEvent)
180 virtual Any SAL_CALL approveFiring(const ScriptEvent& aScriptEvent)
189 void BasicScriptListener_Impl::firing( const ScriptEvent& aScriptEvent ) throw ( RuntimeException ) in firing() argument
191 firing_impl( aScriptEvent, NULL ); in firing()
194 Any BasicScriptListener_Impl::approveFiring( const ScriptEvent& aScriptEvent ) in approveFiring() argument
198 firing_impl( aScriptEvent, &aRetAny ); in approveFiring()
211 void BasicScriptListener_Impl::firing_impl( const ScriptEvent& aScriptEvent, Any* pRet ) in firing_impl() argument
215 if( aScriptEvent.ScriptType.compareToAscii( "StarBasic" ) == 0 ) in firing_impl()
218 String aMacro( aScriptEvent.ScriptCode ); in firing_impl()
318 sal_Int32 nCnt = aScriptEvent.Arguments.getLength(); in firing_impl()
322 const Any *pArgs = aScriptEvent.Arguments.getConstArray(); in firing_impl()
343 SFURL_firing_impl( aScriptEvent, pRet, m_xModel ); in firing_impl()