Lines Matching refs:OUString

66 OUString m_implName;
67 OUString m_serviceName;
69 TestService( OUString implName, OUString serviceName);
71 virtual OUString SAL_CALL getImplementationName( ) throw (RuntimeException);
72 … virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw (RuntimeException);
73 virtual Sequence<OUString > SAL_CALL getSupportedServiceNames( ) throw (RuntimeException);
76 TestService::TestService( OUString implName, OUString serviceName): in TestService()
87 OUString SAL_CALL TestService::getImplementationName( ) throw (RuntimeException) in getImplementationName()
91 sal_Bool SAL_CALL TestService::supportsService( const OUString& ServiceName ) throw (RuntimeExcepti… in supportsService()
95 Sequence<OUString > SAL_CALL TestService::getSupportedServiceNames( ) throw (RuntimeException) in getSupportedServiceNames()
97 return Sequence<OUString>( &m_serviceName, 1); in getSupportedServiceNames()
106 OUString( RTL_CONSTASCII_USTRINGPARAM( IMPLNAME1)), in test1_createInstance()
107 OUString( RTL_CONSTASCII_USTRINGPARAM( SERVICENAME1)) )), UNO_QUERY); in test1_createInstance()
113 OUString( RTL_CONSTASCII_USTRINGPARAM( IMPLNAME2)), in test2_createInstance()
114 OUString( RTL_CONSTASCII_USTRINGPARAM( SERVICENAME2)) )), UNO_QUERY); in test2_createInstance()
120 OUString( RTL_CONSTASCII_USTRINGPARAM( IMPLNAME3)), in test3_createInstance()
121 OUString( RTL_CONSTASCII_USTRINGPARAM( SERVICENAME3)) )), UNO_QUERY); in test3_createInstance()
127 OUString( RTL_CONSTASCII_USTRINGPARAM( IMPLNAME4)), in test4_createInstance()
128 OUString( RTL_CONSTASCII_USTRINGPARAM( SERVICENAME4)) )), UNO_QUERY); in test4_createInstance()
146 OUString::createFromAscii( "/" IMPLNAME1 "/UNO/SERVICES" ) ) ); in component_writeInfo()
148 xNewKey->createKey( OUString( RTL_CONSTASCII_USTRINGPARAM( SERVICENAME1))); in component_writeInfo()
152 OUString::createFromAscii( "/" IMPLNAME2 "/UNO/SERVICES" ) ); in component_writeInfo()
154 xNewKey->createKey(OUString( RTL_CONSTASCII_USTRINGPARAM( SERVICENAME2))); in component_writeInfo()
157 OUString::createFromAscii( "/" IMPLNAME3 "/UNO/SERVICES" ) ); in component_writeInfo()
159 xNewKey->createKey(OUString( RTL_CONSTASCII_USTRINGPARAM( SERVICENAME3))); in component_writeInfo()
163 OUString::createFromAscii( "/" IMPLNAME4 "/UNO/SERVICES" ) ); in component_writeInfo()
165 xNewKey->createKey(OUString( RTL_CONSTASCII_USTRINGPARAM( SERVICENAME4))); in component_writeInfo()
181 OUString implname1( RTL_CONSTASCII_USTRINGPARAM( IMPLNAME1) ); in component_getFactory()
182 OUString serviceName1( RTL_CONSTASCII_USTRINGPARAM( SERVICENAME1) ); in component_getFactory()
183 OUString implname2( RTL_CONSTASCII_USTRINGPARAM( IMPLNAME2) ); in component_getFactory()
184 OUString serviceName2( RTL_CONSTASCII_USTRINGPARAM( SERVICENAME2) ); in component_getFactory()
185 OUString implname3( RTL_CONSTASCII_USTRINGPARAM( IMPLNAME3) ); in component_getFactory()
186 OUString serviceName3( RTL_CONSTASCII_USTRINGPARAM( SERVICENAME3) ); in component_getFactory()
187 OUString implname4( RTL_CONSTASCII_USTRINGPARAM( IMPLNAME4) ); in component_getFactory()
188 OUString serviceName4( RTL_CONSTASCII_USTRINGPARAM( SERVICENAME4) ); in component_getFactory()
190 if (implname1.equals( OUString::createFromAscii(pImplName))) in component_getFactory()
197 Sequence<OUString>( &serviceName1, 1), in component_getFactory()
207 else if( implname2.equals( OUString::createFromAscii(pImplName))) in component_getFactory()
214 Sequence<OUString>( &serviceName2, 1), in component_getFactory()
224 else if( implname3.equals( OUString::createFromAscii(pImplName))) in component_getFactory()
231 Sequence<OUString>( &serviceName3, 1), in component_getFactory()
241 else if( implname4.equals( OUString::createFromAscii(pImplName))) in component_getFactory()
248 Sequence<OUString>( &serviceName3, 1), in component_getFactory()