Lines Matching refs:classname

88 #define IMPLEMENT_SERVICE_INFO_IMPLNAME(classname, implasciiname)	\  argument
89 …::rtl::OUString SAL_CALL classname::getImplementationName( ) throw (::com::sun::star::uno::Runtim…
94 #define IMPLEMENT_SERVICE_INFO_IMPLNAME_STATIC(classname, implasciiname) \ argument
95 …::rtl::OUString SAL_CALL classname::getImplementationName( ) throw (::com::sun::star::uno::Runtim…
99 …::rtl::OUString SAL_CALL classname::getImplementationName_Static( ) throw (::com::sun::star::uno:…
104 #define IMPLEMENT_SERVICE_INFO_SUPPORTS(classname) \ argument
105 …sal_Bool SAL_CALL classname::supportsService( const ::rtl::OUString& _rServiceName ) throw(::com::…
116 #define IMPLEMENT_SERVICE_INFO_GETSUPPORTED1(classname, serviceasciiname) \ argument
117 …::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL classname::getSupportedServiceNames( …
124 #define IMPLEMENT_SERVICE_INFO_GETSUPPORTED1_STATIC(classname, serviceasciiname) \ argument
125 …::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL classname::getSupportedServiceNames( …
129 …::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL classname::getSupportedServiceNames_St…
136 #define IMPLEMENT_SERVICE_INFO_GETSUPPORTED2_STATIC(classname, serviceasciiname1, serviceasciiname2… argument
137 …::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL classname::getSupportedServiceNames( …
141 …::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL classname::getSupportedServiceNames_St…
149 #define IMPLEMENT_SERVICE_INFO_GETSUPPORTED2(classname, serviceasciiname1, serviceasciiname2) \ argument
150 …::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL classname::getSupportedServiceNames( …
158 #define IMPLEMENT_SERVICE_INFO_GETSUPPORTED3(classname, serviceasciiname1, serviceasciiname2, servi… argument
159 …::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL classname::getSupportedServiceNames( …
168 #define IMPLEMENT_SERVICE_INFO_CREATE_STATIC(classname) \ argument
170 …SAL_CALL classname::Create(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiS…
172 return static_cast< XServiceInfo* >(new classname(_rxORB)); \
196 #define IMPLEMENT_SERVICE_INFO1(classname, implasciiname, serviceasciiname) \ argument
197 IMPLEMENT_SERVICE_INFO_IMPLNAME(classname, implasciiname) \
198 IMPLEMENT_SERVICE_INFO_SUPPORTS(classname) \
199 IMPLEMENT_SERVICE_INFO_GETSUPPORTED1(classname, serviceasciiname) \
202 #define IMPLEMENT_SERVICE_INFO1_STATIC(classname, implasciiname, serviceasciiname) \ argument
203 IMPLEMENT_SERVICE_INFO_IMPLNAME_STATIC(classname, implasciiname) \
204 IMPLEMENT_SERVICE_INFO_SUPPORTS(classname) \
205 IMPLEMENT_SERVICE_INFO_GETSUPPORTED1_STATIC(classname, serviceasciiname) \
206 IMPLEMENT_SERVICE_INFO_CREATE_STATIC(classname) \
209 #define IMPLEMENT_SERVICE_INFO2(classname, implasciiname, serviceasciiname1, serviceasciiname2) \ argument
210 IMPLEMENT_SERVICE_INFO_IMPLNAME(classname, implasciiname) \
211 IMPLEMENT_SERVICE_INFO_SUPPORTS(classname) \
212 IMPLEMENT_SERVICE_INFO_GETSUPPORTED2(classname, serviceasciiname1, serviceasciiname2)
215 #define IMPLEMENT_SERVICE_INFO2_STATIC(classname, implasciiname, serviceasciiname1, serviceasciinam… argument
216 IMPLEMENT_SERVICE_INFO_IMPLNAME_STATIC(classname, implasciiname) \
217 IMPLEMENT_SERVICE_INFO_SUPPORTS(classname) \
218 IMPLEMENT_SERVICE_INFO_GETSUPPORTED2_STATIC(classname, serviceasciiname1,serviceasciiname2) \
219 IMPLEMENT_SERVICE_INFO_CREATE_STATIC(classname) \
222 #define IMPLEMENT_SERVICE_INFO3(classname, implasciiname, serviceasciiname1, serviceasciiname2, ser… argument
223 IMPLEMENT_SERVICE_INFO_IMPLNAME(classname, implasciiname) \
224 IMPLEMENT_SERVICE_INFO_SUPPORTS(classname) \
225 …IMPLEMENT_SERVICE_INFO_GETSUPPORTED3(classname, serviceasciiname1, serviceasciiname2, serviceascii…
228 #define IMPLEMENT_SERVICE_INFO1_ABSTRACT(classname, serviceasciiname) \ argument
229 IMPLEMENT_SERVICE_INFO_SUPPORTS(classname) \
230 IMPLEMENT_SERVICE_INFO_GETSUPPORTED1(classname, serviceasciiname) \
233 #define IMPLEMENT_SERVICE_INFO2_ABSTRACT(classname, serviceasciiname1, serviceasciiname2) \ argument
234 IMPLEMENT_SERVICE_INFO_SUPPORTS(classname) \
235 IMPLEMENT_SERVICE_INFO_GETSUPPORTED2(classname, serviceasciiname1, serviceasciiname2) \
255 #define IMPLEMENT_IMPLEMENTATION_ID( classname ) \ argument
256 ::com::sun::star::uno::Sequence< sal_Int8 > classname::getUnoTunnelImplementationId() \
270 ::com::sun::star::uno::Sequence< sal_Int8 > classname::getImplementationId() throw (::com::sun::sta…
272 return classname::getUnoTunnelImplementationId(); \
276 #define IMPLEMENT_GETTYPES2( classname, baseclass1, baseclass2 ) \ argument
277 …::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > classname::getTypes() throw (::com:…
286 #define IMPLEMENT_GETTYPES3( classname, baseclass1, baseclass2, baseclass3 ) \ argument
287 …::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > classname::getTypes() throw (::com:…
297 #define IMPLEMENT_TYPEPROVIDER2( classname, baseclass1, baseclass2 ) \ argument
298 IMPLEMENT_IMPLEMENTATION_ID( classname) \
299 IMPLEMENT_GETTYPES2( classname, baseclass1, baseclass2 )
302 #define IMPLEMENT_TYPEPROVIDER3( classname, baseclass1, baseclass2, baseclass3 ) \ argument
303 IMPLEMENT_IMPLEMENTATION_ID( classname) \
304 IMPLEMENT_GETTYPES3(classname, baseclass1, baseclass2, baseclass3 )
315 #define IMPLEMENT_PROPERTYCONTAINER_DEFAULTS2( classname , baseclass1) \ argument
316 …::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL classname:…
321 ::cppu::IPropertyArrayHelper& classname::getInfoHelper() \
325 ::cppu::IPropertyArrayHelper* classname::createArrayHelper( ) const \
332 #define IMPLEMENT_PROPERTYCONTAINER_DEFAULTS( classname ) \ argument
333 IMPLEMENT_PROPERTYCONTAINER_DEFAULTS2( classname, classname )