Home
last modified time | relevance | path

Searched refs:xSI (Results 1 – 25 of 39) sorted by relevance

12

/trunk/main/odk/examples/DevelopersGuide/Forms/
H A DFLTools.java40 XServiceInfo xSI = UNO.queryServiceInfo( aObject ); in dump_Object() local
41 if ( null != xSI ) in dump_Object()
42 System.out.println( "dumping object with name \"" + xSI.getImplementationName() + "\"" ); in dump_Object()
202 XServiceInfo xSI = UNO.queryServiceInfo( xComponent ); in classifyFormComponentType() local
238 if ( ( null != xSI ) && xSI.supportsService( "com.sun.star.form.component.FormattedField" ) ) in classifyFormComponentType()
250 if ( ( null != xSI ) && xSI.supportsService( "com.sun.star.form.component.DataForm" ) ) in classifyFormComponentType()
H A DComponentTreeTraversal.java51 XServiceInfo xSI = UNO.queryServiceInfo( xContainer ); in shouldStepInto() local
52 if ( null != xSI in shouldStepInto()
53 && ( xSI.supportsService( "com.sun.star.form.FormComponents" ) in shouldStepInto()
54 || xSI.supportsService( "com.sun.star.form.component.GridControl" ) in shouldStepInto()
H A DDocumentHelper.java223 XServiceInfo xSI = (XServiceInfo)UnoRuntime.queryInterface( in classify() local
226 if ( xSI.supportsService( "com.sun.star.text.TextDocument" ) ) in classify()
228 else if ( xSI.supportsService( "com.sun.star.sheet.SpreadsheetDocument" ) ) in classify()
230 else if ( xSI.supportsService( "com.sun.star.drawing.DrawingDocument" ) ) in classify()
/trunk/main/forms/source/component/
H A DFormattedFieldWrapper.cxx210 Reference< XServiceInfo > xSI; in supportsService() local
211 …ggregate->queryAggregation(::getCppuType(static_cast< Reference< XServiceInfo >* >(NULL))) >>= xSI; in supportsService()
212 return xSI->supportsService(_rServiceName); in supportsService()
219 Reference< XServiceInfo > xSI; in getSupportedServiceNames() local
220 …ggregate->queryAggregation(::getCppuType(static_cast< Reference< XServiceInfo >* >(NULL))) >>= xSI; in getSupportedServiceNames()
221 return xSI->getSupportedServiceNames(); in getSupportedServiceNames()
375 Reference< XServiceInfo > xSI(m_xAggregate, UNO_QUERY); in ensureAggregate() local
376 if (!xSI.is()) in ensureAggregate()
/trunk/main/test/source/java/org/openoffice/test/tools/
H A DOfficeDocument.java91 XServiceInfo xSI = UnoRuntime.queryInterface( XServiceInfo.class, document ); in implLoadDocument() local
92 if ( xSI.supportsService( "com.sun.star.sheet.SpreadsheetDocument" ) ) in implLoadDocument()
237 XServiceInfo xSI = UnoRuntime.queryInterface( XServiceInfo.class, m_documentComponent ); in classify() local
239 if ( xSI.supportsService( "com.sun.star.text.TextDocument" ) ) in classify()
241 else if ( xSI.supportsService( "com.sun.star.sheet.SpreadsheetDocument" ) ) in classify()
243 else if ( xSI.supportsService( "com.sun.star.drawing.DrawingDocument" ) ) in classify()
245 else if ( xSI.supportsService( "com.sun.star.presentation.PresentationDocument" ) ) in classify()
247 else if ( xSI.supportsService( "com.sun.star.formula.FormulaProperties" ) ) in classify()
/trunk/main/connectivity/source/manager/
H A Dmdrivermanager.cxx330 Reference< XServiceInfo > xSI; in bootstrapDrivers() local
343 xSI = xSI.query( xFactory ); in bootstrapDrivers()
344 if ( xSI.is() ) in bootstrapDrivers()
346 aDriverDescriptor.sImplementationName = xSI->getImplementationName(); in bootstrapDrivers()
365 xSI = xSI.query( xDriver ); in bootstrapDrivers()
366 … OSL_ENSURE( xSI.is(), "OSDBCDriverManager::bootstrapDrivers: a driver without service info?" ); in bootstrapDrivers()
367 if ( xSI.is() ) in bootstrapDrivers()
369 aDriverDescriptor.sImplementationName = xSI->getImplementationName(); in bootstrapDrivers()
/trunk/main/wizards/com/sun/star/wizards/text/
H A DTextFieldHandler.java233 XServiceInfo xSI = UnoRuntime.queryInterface(XServiceInfo.class, oTextField); in updateDocInfoFields() local
235 if (xSI.supportsService("com.sun.star.text.TextField.ExtendedUser")) in updateDocInfoFields()
240 if (xSI.supportsService("com.sun.star.text.TextField.User")) in updateDocInfoFields()
268 XServiceInfo xSI = UnoRuntime.queryInterface(XServiceInfo.class, oTextField); in updateDateFields() local
270 if (xSI.supportsService("com.sun.star.text.TextField.DateTime")) in updateDateFields()
292 XServiceInfo xSI = UnoRuntime.queryInterface(XServiceInfo.class, oTextField); in fixDateFields() local
293 if (xSI.supportsService("com.sun.star.text.TextField.DateTime")) in fixDateFields()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/util/
H A Ddbg.java305 XServiceInfo xSI = (XServiceInfo) in getSuppServices() local
307 printArray(xSI.getSupportedServiceNames()); in getSuppServices()
310 for (int i=0;i<xSI.getSupportedServiceNames().length;i++) { in getSuppServices()
311 if (! xSI.supportsService(xSI.getSupportedServiceNames()[i])) { in getSuppServices()
313 str+="\n" + xSI.getSupportedServiceNames()[i]; in getSuppServices()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/convwatch/
H A DGraphicalDifferenceCheck.java357 XServiceInfo xSI = (XServiceInfo) UnoRuntime.queryInterface(XServiceInfo.class, xComponent); in getXMLOutputFilterforXComponent() local
358 if (xSI.supportsService("com.sun.star.text.TextDocument")){ in getXMLOutputFilterforXComponent()
361 }else if (xSI.supportsService("com.sun.star.sheet.SpreadsheetDocument")){ in getXMLOutputFilterforXComponent()
364 }else if (xSI.supportsService("com.sun.star.presentation.PresentationDocument")){ in getXMLOutputFilterforXComponent()
367 }else if(xSI.supportsService("com.sun.star.drawing.DrawingDocument")){ in getXMLOutputFilterforXComponent()
370 }else if (xSI.supportsService("com.sun.star.formula.FormulaProperties")){ in getXMLOutputFilterforXComponent()
/trunk/main/forms/qa/integration/forms/
H A DDocumentHelper.java97 XServiceInfo xSI = (XServiceInfo)UnoRuntime.queryInterface( XServiceInfo.class, in implLoadDocument() local
99 if ( xSI.supportsService( "com.sun.star.sheet.SpreadsheetDocument" ) ) in implLoadDocument()
306 XServiceInfo xSI = (XServiceInfo)UnoRuntime.queryInterface( in classify() local
309 if ( xSI.supportsService( "com.sun.star.text.TextDocument" ) ) in classify()
311 else if ( xSI.supportsService( "com.sun.star.sheet.SpreadsheetDocument" ) ) in classify()
313 else if ( xSI.supportsService( "com.sun.star.drawing.DrawingDocument" ) ) in classify()
/trunk/main/xmloff/source/forms/
H A Dformcellbinding.cxx268 Reference< XServiceInfo > xSI( _rxDocument, UNO_QUERY ); in isSpreadsheetDocumentWhichSupplies() local
269 if ( xSI.is() && xSI->supportsService( SERVICE_SPREADSHEET_DOCUMENT ) ) in isSpreadsheetDocumentWhichSupplies()
373 Reference< XServiceInfo > xSI( _rxComponent, UNO_QUERY ); in doesComponentSupport() local
374 bDoes = xSI.is() && xSI->supportsService( _rService ); in doesComponentSupport()
H A Dlayerexport.cxx131 Reference< XServiceInfo > xSI(_rxForms, UNO_QUERY); // order is important! in impl_isFormPageContainingForms() local
132 …OSL_ENSURE(xSI.is(), "OFormLayerXMLExport_Impl::impl_isFormPageContainingForms: invalid collection… in impl_isFormPageContainingForms()
133 if (!xSI.is()) in impl_isFormPageContainingForms()
136 if (!xSI->supportsService(SERVICE_FORMSCOLLECTION)) in impl_isFormPageContainingForms()
H A Delementexport.cxx218 Reference< XServiceInfo > xSI(m_xProps, UNO_QUERY); in exportServiceNameAttribute() local
219 if (xSI.is() && xSI->supportsService(SERVICE_FORMATTEDFIELD)) in exportServiceNameAttribute()
223 Reference< XServiceInfo > xSI(m_xProps, UNO_QUERY); in exportServiceNameAttribute() local
224 OSL_ENSURE(xSI.is() && xSI->supportsService(sToWriteServiceName), in exportServiceNameAttribute()
/trunk/main/extensions/source/propctrlr/
H A Dcellbindinghelper.cxx385 Reference< XServiceInfo > xSI( m_xDocument, UNO_QUERY ); in isSpreadsheetDocumentWhichSupplies() local
386 if ( xSI.is() && xSI->supportsService( SERVICE_SPREADSHEET_DOCUMENT ) ) in isSpreadsheetDocumentWhichSupplies()
516 Reference< XServiceInfo > xSI( _rxComponent, UNO_QUERY ); in doesComponentSupport() local
517 bDoes = xSI.is() && xSI->supportsService( _rService ); in doesComponentSupport()
H A Dxsdvalidationhelper.cxx67 Reference< XServiceInfo > xSI( _rxIntrospectee, UNO_QUERY ); in XSDValidationHelper() local
73 && xSI.is() in XSDValidationHelper()
74 && xSI->supportsService( SERVICE_COMPONENT_FORMATTEDFIELD ) in XSDValidationHelper()
H A Deformshelper.cxx169 Reference< XServiceInfo > xSI( m_xControlModel, UNO_QUERY ); in canBindToDataType() local
170 …OSL_ENSURE( xSI.is(), "EFormsHelper::canBindToDataType: a control model which has no service info?… in canBindToDataType()
171 if ( xSI.is() ) in canBindToDataType()
173 if ( xSI->supportsService( SERVICE_COMPONENT_FORMATTEDFIELD ) ) in canBindToDataType()
/trunk/main/comphelper/source/property/
H A Dproperty.cxx108 Reference< XServiceInfo > xSI( _rxDest, UNO_QUERY ); in copyProperties() local
109 if ( xSI.is() ) in copyProperties()
111 …aBuffer.append( ::rtl::OUStringToOString( xSI->getImplementationName(), osl_getThreadTextEncoding(… in copyProperties()
/trunk/main/toolkit/qa/complex/toolkit/
H A DAccessibleStatusBar.java253 XServiceInfo xSI = UnoRuntime.queryInterface(XServiceInfo.class, parentContext); in getTestObject() local
254 String[] services = xSI.getSupportedServiceNames(); in getTestObject()
256 System.out.println("* Implementation Name: " + xSI.getImplementationName()); in getTestObject()
H A DAccessibleStatusBarItem.java284 XServiceInfo xSI = UnoRuntime.queryInterface( in runAllInterfaceTests() local
286 String[] services = xSI.getSupportedServiceNames(); in runAllInterfaceTests()
287 System.out.println("* Implementation Name: " + xSI.getImplementationName()); in runAllInterfaceTests()
/trunk/main/toolkit/test/accessibility/
H A DInformationWriter.java194 XServiceInfo xSI = (XServiceInfo) UnoRuntime.queryInterface ( in showInfo() local
196 if (xSI == null) in showInfo()
201 + xSI.getImplementationName ()); in showInfo()
/trunk/main/accessibility/workben/org/openoffice/accessibility/misc/
H A DInformationWriter.java198 XServiceInfo xSI = (XServiceInfo) UnoRuntime.queryInterface ( in showInfo() local
200 if (xSI == null) in showInfo()
205 + xSI.getImplementationName ()); in showInfo()
/trunk/main/unotools/source/ucbhelper/
H A Dprogresshandlerwrap.cxx35 …ressHandlerWrap( ::com::sun::star::uno::Reference< ::com::sun::star::task::XStatusIndicator > xSI ) in ProgressHandlerWrap() argument
36 : m_xStatusIndicator( xSI ) in ProgressHandlerWrap()
/trunk/main/xmloff/source/transform/
H A DTransformerBase.cxx1491 Reference< XServiceInfo > xSI( mxModel, UNO_QUERY ); in isWriter() local
1492 return xSI.is() && in isWriter()
1493 …( xSI->supportsService( OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.text.TextDocument" ) … in isWriter()
1494xSI->supportsService( OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.text.WebDocument" ) ) )… in isWriter()
1495xSI->supportsService( OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.text.GlobalDocument" ) … in isWriter()
/trunk/main/svx/source/form/
H A Dfmdocumentclassification.cxx141 Reference< XServiceInfo > xSI( _rxDocumentModel, UNO_QUERY_THROW ); in classifyDocument() local
145 …if ( xSI->supportsService( ::rtl::OUString::createFromAscii( pModuleInfo->pAsciiModuleOrServiceNam… in classifyDocument()
/trunk/main/unotools/source/config/
H A Dconfignode.cxx352 Reference< XServiceInfo > xSI(m_xHierarchyAccess, UNO_QUERY); in isSetNode() local
353 if (xSI.is()) in isSetNode()
355 …try { bIsSet = xSI->supportsService(::rtl::OUString::createFromAscii("com.sun.star.configuration.S… in isSetNode()

Completed in 120 milliseconds

12