Lines Matching refs:_rEvent

138 …ptEvent_nothrow( ::osl::ClearableMutexGuard& _rGuard, const ScriptEvent& _rEvent, Any* _pSyncronou…
164 void doFireScriptEvent( const ScriptEvent& _rEvent, Any* _pSyncronousResult );
222 …ptEvent_nothrow( ::osl::ClearableMutexGuard& _rGuard, const ScriptEvent& _rEvent, Any* _pSyncronou… in impl_doFireScriptEvent_nothrow() argument
228 pExecutor->doFireScriptEvent( _rEvent, _pSyncronousResult ); in impl_doFireScriptEvent_nothrow()
232 void SAL_CALL FormScriptListener::firing( const ScriptEvent& _rEvent ) throw (RuntimeException) in firing() argument
237 if ( _rEvent.ScriptType.equals(vbaInterOp) ) in firing()
243 …if ( !impl_allowAsynchronousCall_nothrow( _rEvent.ListenerType.getTypeName(), _rEvent.MethodName )… in firing()
245 impl_doFireScriptEvent_nothrow( aGuard, _rEvent, NULL ); in firing()
250 …:PostUserEvent( LINK( this, FormScriptListener, OnAsyncScriptEvent ), new ScriptEvent( _rEvent ) ); in firing()
254 …Any SAL_CALL FormScriptListener::approveFiring( const ScriptEvent& _rEvent ) throw (InvocationTarg… in approveFiring() argument
260 impl_doFireScriptEvent_nothrow( aGuard, _rEvent, &aResult ); in approveFiring()
421 …void FormScriptingEnvironment::doFireScriptEvent( const ScriptEvent& _rEvent, Any* _pSyncronousRes… in doFireScriptEvent() argument
437 if ( !_rEvent.ScriptType.equalsAscii( "StarBasic" ) ) in doFireScriptEvent()
439 pScript.reset( new NewStyleUNOScript( *xObjectShell, _rEvent.ScriptCode ) ); in doFireScriptEvent()
443 ::rtl::OUString sScriptCode = _rEvent.ScriptCode; in doFireScriptEvent()
491 … pScript->invoke( _rEvent.Arguments, _pSyncronousResult ? *_pSyncronousResult : aIgnoreResult ); in doFireScriptEvent()