Lines Matching refs:ClassName

29 #define IMPL_XUNOTUNNEL( ClassName ) \  argument
30 sal_Int64 ClassName::getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& rIdentifier )…
32 …if( ( rIdentifier.getLength() == 16 ) && ( 0 == rtl_compareMemory( ClassName::GetUnoTunnelId().get…
38 const ::com::sun::star::uno::Sequence< sal_Int8 >& ClassName::GetUnoTunnelId() throw() \
53 ClassName* ClassName::GetImplementation( const ::com::sun::star::uno::Reference< ::com::sun::star::…
56 …return xUT.is() ? reinterpret_cast<ClassName*>(sal::static_int_cast<sal_IntPtr>(xUT->getSomething(…
59 #define IMPL_XUNOTUNNEL2( ClassName, BaseClass ) \ argument
60 sal_Int64 ClassName::getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& rIdentifier )…
62 …if( ( rIdentifier.getLength() == 16 ) && ( 0 == rtl_compareMemory( ClassName::GetUnoTunnelId().get…
68 const ::com::sun::star::uno::Sequence< sal_Int8 >& ClassName::GetUnoTunnelId() throw() \
83 ClassName* ClassName::GetImplementation( const ::com::sun::star::uno::Reference< ::com::sun::star::…
86 …return xUT.is() ? reinterpret_cast<ClassName*>(sal::static_int_cast<sal_IntPtr>(xUT->getSomething(…
91 #define IMPL_IMPLEMENTATION_ID( ClassName ) \ argument
92 ::com::sun::star::uno::Sequence< sal_Int8 > ClassName::getImplementationId() throw(::com::sun::star…
107 #define IMPL_XTYPEPROVIDER_START( ClassName ) \ argument
108 IMPL_IMPLEMENTATION_ID( ClassName ) \
109 ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > ClassName::getTypes() throw(::com::s…
132 #define DECL_LISTENERMULTIPLEXER_START( ClassName, InterfaceName ) \ argument
133 class ClassName : public ListenerMultiplexerBase, public InterfaceName \
136 ClassName( ::cppu::OWeakObject& rSource ); \
144 #define DECL_LISTENERMULTIPLEXER_START_DLLPUB( ClassName, InterfaceName ) \ argument
145 class TOOLKIT_DLLPUBLIC ClassName : public ListenerMultiplexerBase, public InterfaceName \
148 ClassName( ::cppu::OWeakObject& rSource ); \
161 #define IMPL_LISTENERMULTIPLEXER_BASEMETHODS( ClassName, InterfaceName ) \ argument
162 ClassName::ClassName( ::cppu::OWeakObject& rSource ) \
166 ::com::sun::star::uno::Any ClassName::queryInterface( const ::com::sun::star::uno::Type & rType ) t…
173 void ClassName::disposing( const ::com::sun::star::lang::EventObject& ) throw(::com::sun::star::uno…
180 #define DISPLAY_EXCEPTION( ClassName, MethodName, e ) \ argument
181 ::rtl::OString sMessage( #ClassName "::" #MethodName ": caught an exception!\n" ); \
185 #define DISPLAY_EXCEPTION( ClassName, MethodName, e ) argument
188 #define IMPL_LISTENERMULTIPLEXER_LISTENERMETHOD_BODY( ClassName, InterfaceName, MethodName, EventTy… argument
209 DISPLAY_EXCEPTION( ClassName, MethodName, e ) \
214 #define IMPL_LISTENERMULTIPLEXER_LISTENERMETHOD_EXCEPTION( ClassName, InterfaceName, MethodName, Ev… argument
215 void ClassName::MethodName( const EventType& evt ) throw(::com::sun::star::uno::RuntimeException, E…
216 IMPL_LISTENERMULTIPLEXER_LISTENERMETHOD_BODY( ClassName, InterfaceName, MethodName, EventType )
218 #define IMPL_LISTENERMULTIPLEXER_LISTENERMETHOD( ClassName, InterfaceName, MethodName, EventType ) \ argument
219 void ClassName::MethodName( const EventType& evt ) throw(::com::sun::star::uno::RuntimeException) \
220 IMPL_LISTENERMULTIPLEXER_LISTENERMETHOD_BODY( ClassName, InterfaceName, MethodName, EventType )