Lines Matching refs:CLASS
83 #define CREATEINSTANCE(CLASS) \ argument
85 …static Reference< XInterface > SAL_CALL CLASS##_createInstance ( const Reference< XMultiServiceFac…
88 return Reference< XInterface >( *(OWeakObject*)(new CLASS( rServiceManager )) ); \
92 #define CREATEFACTORY_ONEINSTANCE(CLASS) \ argument
99 CLASS::impl_getStaticImplementationName () , \
100 CLASS##_createInstance , \
101 CLASS::impl_getStaticSupportedServiceNames () ) \
106 #define CREATEFACTORY_SINGLE(CLASS) \ argument
113 CLASS::impl_getStaticImplementationName () , \
114 CLASS##_createInstance , \
115 CLASS::impl_getStaticSupportedServiceNames () ) \
120 #define IF_NAME_CREATECOMPONENTFACTORY_ONEINSTANCE(CLASS) \ argument
122 …if ( CLASS::impl_getStaticImplementationName().equals( OUString::createFromAscii( pImplementationN…
125 CREATEFACTORY_ONEINSTANCE ( CLASS ) \
129 #define IF_NAME_CREATECOMPONENTFACTORY_SINGLE(CLASS) \ argument
131 …if ( CLASS::impl_getStaticImplementationName().equals( OUString::createFromAscii( pImplementationN…
134 CREATEFACTORY_SINGLE ( CLASS ) \