/aoo4110/main/pyuno/source/module/ |
H A D | unohelper.py | 125 def createSingleServiceFactory( clazz, implementationName, serviceNames ): argument 126 return _FactoryHelper_( clazz, implementationName, serviceNames ) 129 def __init__(self, ctor,serviceNames): argument 131 self.serviceNames = serviceNames 144 for serviceName in i[1].serviceNames: 158 return entry.serviceNames 164 return serviceName in entry.serviceNames 279 def __init__( self, clazz, implementationName, serviceNames ): argument 282 self.serviceNames = serviceNames 288 return ServiceName in self.serviceNames [all …]
|
/aoo4110/main/desktop/test/deployment/active/ |
H A D | active_python.py | 35 serviceNames = ("com.sun.star.test.deployment.active_python",) variable in Provider 44 return ServiceName in self.serviceNames 47 return self.serviceNames 62 serviceNames = () variable in Dispatch 71 return ServiceName in self.serviceNames 74 return self.serviceNames 96 Provider, Provider.implementationName, Provider.serviceNames) 99 Dispatch, Dispatch.implementationName, Dispatch.serviceNames) 107 for j in i.serviceNames:
|
H A D | Services.java | 40 Dispatch.serviceNames); in __getComponentFactory() 44 Provider.serviceNames); in __getComponentFactory() 52 Dispatch.implementationName, Dispatch.serviceNames, key) && in __writeRegistryServiceInfo() 54 Provider.implementationName, Provider.serviceNames, key))) in __writeRegistryServiceInfo()
|
H A D | Provider.java | 49 return serviceNames; in getSupportedServiceNames() 77 static final String[] serviceNames = new String[] { field in Provider
|
/aoo4110/main/desktop/test/deployment/passive/ |
H A D | passive_python.py | 34 serviceNames = ("com.sun.star.test.deployment.passive_python",) variable in Provider 43 return ServiceName in self.serviceNames 46 return self.serviceNames 61 serviceNames = () variable in Dispatch 70 return ServiceName in self.serviceNames 73 return self.serviceNames 94 Provider, Provider.implementationName, Provider.serviceNames) 96 Dispatch, Dispatch.implementationName, Dispatch.serviceNames)
|
H A D | Services.java | 38 Dispatch.serviceNames); in __getComponentFactory() 42 Provider.serviceNames); in __getComponentFactory()
|
H A D | Provider.java | 49 return serviceNames; in getSupportedServiceNames() 77 static final String[] serviceNames = new String[] { field in Provider
|
/aoo4110/main/jurt/com/sun/star/comp/servicemanager/ |
H A D | ServiceManager.java | 562 String[] serviceNames = xServiceInfo.getSupportedServiceNames(); in insert() local 565 for (int i=0; i<serviceNames.length; i++) { in insert() 566 if ( !factoriesByServiceNames.containsKey( serviceNames[i] ) ) { in insert() 567 DEBUG("> no registered services found under " + serviceNames[i] + ": adding..." ); in insert() 568 factoriesByServiceNames.put(serviceNames[i], new java.util.Vector()); in insert() 575 " already registered for the service " + serviceNames[i] + " - ignoring!"); in insert() 620 String[] serviceNames = xServiceInfo.getSupportedServiceNames(); in remove() local 622 for ( int i=0; i<serviceNames.length; i++ ) { in remove() 623 if ( factoriesByServiceNames.containsKey( serviceNames[i] ) ) { in remove() 628 " is not registered for the service " + serviceNames[i] + " - ignoring!"); in remove() [all …]
|
/aoo4110/main/qadevOOo/tests/java/ifc/container/ |
H A D | _XContentEnumerationAccess.java | 42 String[] serviceNames = null; field in _XContentEnumerationAccess 52 serviceNames = oObj.getAvailableServiceNames(); in _getAvailableServiceNames() 53 bResult = serviceNames != null ; in _getAvailableServiceNames() 75 if (serviceNames.length == 0) { in _createContentEnumeration() 84 XEnumeration oEnum = oObj.createContentEnumeration(serviceNames[0]); in _createContentEnumeration()
|
/aoo4110/main/sw/source/ui/vba/ |
H A D | vbaglobals.cxx | 162 …static uno::Sequence< rtl::OUString > serviceNames( SwVbaGlobals_BASE::getAvailableServiceNames() … in getAvailableServiceNames() local 171 sal_Int32 startIndex = serviceNames.getLength(); in getAvailableServiceNames() 172 serviceNames.realloc( serviceNames.getLength() + nWordServices ); in getAvailableServiceNames() 174 serviceNames[ startIndex + index ] = names[ index ]; in getAvailableServiceNames() 177 return serviceNames; in getAvailableServiceNames()
|
/aoo4110/main/scripting/source/provider/ |
H A D | ProviderCache.cxx | 165 Sequence< ::rtl::OUString > serviceNames = xServiceInfo->getSupportedServiceNames(); in populateCache() local 167 if ( serviceNames.getLength() > 0 ) in populateCache() 172 for ( sal_Int32 index = 0; index < serviceNames.getLength(); index++ ) in populateCache() 174 …if ( serviceNames[ index ].indexOf( searchString ) == 0 && !isInBlackList( serviceNames[ index ] … in populateCache() 176 serviceName = serviceNames[ index ]; in populateCache()
|
H A D | MasterScriptProvider.cxx | 837 Sequence< ::rtl::OUString > serviceNames( getSupportedServiceNames() ); in supportsService() local 838 ::rtl::OUString const * pNames = serviceNames.getConstArray(); in supportsService() 839 for ( sal_Int32 nPos = serviceNames.getLength(); nPos--; ) in supportsService() 923 Sequence< ::rtl::OUString > serviceNames = Sequence < in urihelper_getSupportedServiceNames() local 926 return serviceNames; in urihelper_getSupportedServiceNames()
|
/aoo4110/main/cppuhelper/test/testcmp/ |
H A D | TestComponent.cxx | 113 uno::Sequence<rtl::OUString> serviceNames(1); in getSupportedServiceNames_Static() local 114 serviceNames[0] = rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.lang.ServiceInfo")); in getSupportedServiceNames_Static() 116 return serviceNames; in getSupportedServiceNames_Static() 155 uno::Sequence<rtl::OUString> serviceNames = getSupportedServiceNames_Static(); in supportsService() local 157 for (sal_Int32 n = 0; n < serviceNames.getLength(); ++n) in supportsService() 159 if (serviceNames[n] == ServiceName) in supportsService()
|
/aoo4110/main/qadevOOo/tests/java/ifc/drawing/ |
H A D | _XShapeDescriptor.java | 64 String[] serviceNames = SI.getSupportedServiceNames(); in _getShapeType() local 67 for (int i = 0; i < serviceNames.length; i++) { in _getShapeType() 68 log.println(" " + serviceNames[i]); in _getShapeType() 69 if (serviceNames[i].equals(stype)) in _getShapeType()
|
/aoo4110/main/framework/source/uielement/ |
H A D | macrosmenucontroller.cxx | 200 Sequence< ::rtl::OUString > serviceNames = xServiceInfo->getSupportedServiceNames(); in addScriptItems() local 202 if ( serviceNames.getLength() > 0 ) in addScriptItems() 204 for ( sal_Int32 index = 0; index < serviceNames.getLength(); index++ ) in addScriptItems() 206 if ( serviceNames[ index ].indexOf( providerKey ) == 0 ) in addScriptItems() 208 ::rtl::OUString serviceName = serviceNames[ index ]; in addScriptItems()
|
/aoo4110/main/sc/source/ui/vba/ |
H A D | vbaglobals.cxx | 248 …static uno::Sequence< rtl::OUString > serviceNames( ScVbaGlobals_BASE::getAvailableServiceNames() … in getAvailableServiceNames() local 261 sal_Int32 startIndex = serviceNames.getLength(); in getAvailableServiceNames() 262 serviceNames.realloc( serviceNames.getLength() + nExcelServices ); in getAvailableServiceNames() 264 serviceNames[ startIndex + index ] = names[ index ]; in getAvailableServiceNames() 267 return serviceNames; in getAvailableServiceNames()
|
/aoo4110/main/stoc/source/uriproc/ |
H A D | supportsService.cxx | 36 com::sun::star::uno::Sequence< rtl::OUString > const & serviceNames, in supportsService() 39 for (sal_Int32 i = 0; i < serviceNames.getLength(); ++i) { in supportsService() 40 if (serviceNames[i] == serviceName) { in supportsService()
|
/aoo4110/main/comphelper/qa/complex/comphelper/ |
H A D | Map.java | 216 …String[] serviceNames = new String[] { "CheckBox", "ComboBox", "CommandButton", "DateField", "File… in testComplexKeyTypes() local 217 Object[] components = new Object[ serviceNames.length ]; in testComplexKeyTypes() 218 for ( int i=0; i<serviceNames.length; ++i ) in testComplexKeyTypes() 220 … components[i] = getMSF().createInstance( "com.sun.star.form.component." + serviceNames[i] ); in testComplexKeyTypes() 225 impl_checkMappings( components, serviceNames, "XFormComponent->string" ); in testComplexKeyTypes()
|
/aoo4110/main/unoxml/source/rdf/ |
H A D | CBlankNode.cxx | 81 … css::uno::Sequence< ::rtl::OUString > serviceNames = comp_CBlankNode::_getSupportedServiceNames(); in supportsService() local 82 for (::sal_Int32 i = 0; i < serviceNames.getLength(); ++i) { in supportsService() 83 if (serviceNames[i] == serviceName) in supportsService()
|
H A D | CLiteral.cxx | 90 css::uno::Sequence< ::rtl::OUString > serviceNames = comp_CLiteral::_getSupportedServiceNames(); in supportsService() local 91 for (::sal_Int32 i = 0; i < serviceNames.getLength(); ++i) { in supportsService() 92 if (serviceNames[i] == serviceName) in supportsService()
|
/aoo4110/main/qadevOOo/tests/java/ifc/ui/ |
H A D | _XUIConfigurationManager.java | 275 String[] serviceNames = xSI.getSupportedServiceNames(); in _getShortCutManager() local 277 for (int i=0; i<serviceNames.length; i++) { in _getShortCutManager() 278 log.println("SuppService: " + serviceNames[i]); in _getShortCutManager() 279 if (serviceNames[i].equals(sShortCutManagerServiceName)) { in _getShortCutManager()
|
/aoo4110/main/toolkit/source/awt/ |
H A D | asynccallback.cxx | 105 …const css::uno::Sequence< ::rtl::OUString > serviceNames = comp_AsyncCallback::_getSupportedServic… in supportsService() local 106 for (::sal_Int32 i = 0; i < serviceNames.getLength(); ++i) { in supportsService() 107 if (serviceNames[i] == serviceName) in supportsService()
|
/aoo4110/main/comphelper/source/streaming/ |
H A D | seqoutputstreamserv.cxx | 96 uno::Sequence< ::rtl::OUString > serviceNames = getSupportedServiceNames(); in supportsService() local 97 for ( ::sal_Int32 i = 0; i < serviceNames.getLength(); ++i ) { in supportsService() 98 if ( serviceNames[i] == serviceName ) in supportsService()
|
H A D | seqinputstreamserv.cxx | 110 uno::Sequence< ::rtl::OUString > serviceNames = getSupportedServiceNames(); in supportsService() local 111 for ( ::sal_Int32 i = 0; i < serviceNames.getLength(); ++i ) { in supportsService() 112 if ( serviceNames[i] == serviceName ) in supportsService()
|
/aoo4110/main/scripting/source/dlgprov/ |
H A D | DialogModelProvider.cxx | 178 …css::uno::Sequence< ::rtl::OUString > serviceNames = comp_DialogModelProvider::_getSupportedServic… in supportsService() local 179 for (::sal_Int32 i = 0; i < serviceNames.getLength(); ++i) { in supportsService() 180 if (serviceNames[i] == serviceName) in supportsService()
|