Lines Matching refs:methodname
139 #define DECLARE_MULTIPLEXER_VOID_METHOD(methodname, eventtype) \ argument
140 …virtual void SAL_CALL methodname(const eventtype& e) throw (::com::sun::star::uno::RuntimeExceptio…
142 #define DECLARE_MULTIPLEXER_BOOL_METHOD(methodname, eventtype) \ argument
143 …virtual sal_Bool SAL_CALL methodname(const eventtype& e) throw (::com::sun::star::uno::RuntimeExce…
183 …#define IMPLEMENT_LISTENER_MULTIPLEXER_VOID_METHOD(classname, listenerclass, methodname, eventtype… argument
184 …void SAL_CALL classname::methodname(const eventtype& e) throw (::com::sun::star::uno::RuntimeExcep…
190 static_cast< listenerclass*>(aIt.next())->methodname(aMulti); \
193 …#define IMPLEMENT_LISTENER_MULTIPLEXER_BOOL_METHOD(classname, listenerclass, methodname, eventtype… argument
195 …sal_Bool SAL_CALL classname::methodname(const eventtype& e) throw (::com::sun::star::uno::RuntimeE…
202 bResult = static_cast< listenerclass*>(aIt.next())->methodname(aMulti); \
255 #define DECLARE_PROPERTY_MULTIPLEXER(classname, listenerclass, methodname, eventtype, exceptions) \ argument
273 virtual void SAL_CALL methodname(const eventtype& e) throw exceptions; \
293 …#define IMPLEMENT_PROPERTY_MULTIPLEXER(classname, listenerclass, methodname, eventtype, exceptions… argument
319 void SAL_CALL classname::methodname(const eventtype& e) throw exceptions \
365 static_cast< listenerclass*>(aIt.next())->methodname(aMulti); \