Home
last modified time | relevance | path

Searched refs:xInterface (Results 1 – 25 of 81) sorted by path

1234

/trunk/main/basic/source/classes/
H A Dpropacc.cxx393 Reference< XInterface > xInterface; in RTL_Impl_CreatePropertySet()
395 xInterface = xProv->newInstance(); in RTL_Impl_CreatePropertySet()
397 Reference< XInterface > xInterface = (OWeakObject*) new SbPropertyValues(); in RTL_Impl_CreatePropertySet() local
401 if( xInterface.is() ) in RTL_Impl_CreatePropertySet()
408 Reference< XPropertyAccess > xPropAcc = Reference< XPropertyAccess >::query( xInterface ); in RTL_Impl_CreatePropertySet()
413 aAny <<= xInterface; in RTL_Impl_CreatePropertySet()
H A Dsb.cxx444 … Reference< XInterface > xInterface( xFactory->createInstance( aServiceName ), UNO_SET_THROW ); in CreateObject() local
445 return new SbUnoObject( aServiceName, uno::makeAny( xInterface ) ); in CreateObject()
H A Dsbunoobj.cxx3097 Reference< XInterface > xInterface; in RTL_Impl_CreateUnoService() local
3102 xInterface = xFactory->createInstance( aServiceName ); in RTL_Impl_CreateUnoService()
3111 if( xInterface.is() ) in RTL_Impl_CreateUnoService()
3114 aAny <<= xInterface; in RTL_Impl_CreateUnoService()
3155 Reference< XInterface > xInterface; in RTL_Impl_CreateUnoServiceWithArguments() local
3160 xInterface = xFactory->createInstanceWithArguments( aServiceName, aArgs ); in RTL_Impl_CreateUnoServiceWithArguments()
3169 if( xInterface.is() ) in RTL_Impl_CreateUnoServiceWithArguments()
3172 aAny <<= xInterface; in RTL_Impl_CreateUnoServiceWithArguments()
/trunk/main/connectivity/source/cpool/
H A DZPoolCollection.cxx349 Reference< XInterface > xInterface; in createWithServiceFactory() local
357 xInterface = createWithProvider(xProviderAsFac, _rPath); in createWithServiceFactory()
363 return xInterface; in createWithServiceFactory()
371 Reference< XInterface > xInterface; in createWithProvider() local
406 xInterface = _rxConfProvider->createInstanceWithArguments(sAccessService, aCreationArgs); in createWithProvider()
407 OSL_ENSURE(xInterface.is(), "::createWithProvider: could not create the node access!"); in createWithProvider()
414 return xInterface; in createWithProvider()
/trunk/main/cppuhelper/test/
H A Dtestdefaultbootstrapping.cxx59 Reference<XInterface> xInterface = smgr->createInstance(arg); in SAL_IMPLEMENT_MAIN() local
62 fprintf(stderr, "got the %s service %p\n", tmp.getStr(), xInterface.get()); in SAL_IMPLEMENT_MAIN()
65 result = result && (xInterface.get() != 0); in SAL_IMPLEMENT_MAIN()
/trunk/main/cppuhelper/test/testlib/
H A Ddefbootstrap_lib.cxx65 Reference<XInterface> xInterface = smgr->createInstance(arg); in tryService() local
68 fprintf(stderr, "got the %s service %p\n", serviceName, xInterface.get()); in tryService()
70 result = result && (xInterface.get() != 0); in tryService()
/trunk/main/forms/source/component/
H A DDatabaseForm.cxx4109 Reference< XSQLErrorBroadcaster > xBroadcaster( _pElement->xInterface, UNO_QUERY ); in implInserted()
4110 Reference< XForm > xForm ( _pElement->xInterface, UNO_QUERY ); in implInserted()
H A DGrid.cxx831 gotColumn( _pElement->xInterface ); in implInserted()
/trunk/main/forms/source/inc/
H A DInterfaceContainer.hxx67 ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > xInterface;
/trunk/main/forms/source/misc/
H A DInterfaceContainer.cxx818 _pElement->xInterface = Reference< XInterface >( _rxObject, UNO_QUERY ); // normalized XInterface in approveNewElement()
858 m_aItems.push_back( pElementMetaData->xInterface ); in implInsert()
861 m_aItems.insert( m_aItems.begin() + _nIndex, pElementMetaData->xInterface ); in implInsert()
863 …nsert( ::std::pair< const ::rtl::OUString, InterfaceRef >( sName, pElementMetaData->xInterface ) ); in implInsert()
872 m_xEventAttacher->attach( _nIndex, pElementMetaData->xInterface, makeAny( _rxElement ) ); in implInsert()
884 Reference< XEventAttacherManager > xMgr ( pElementMetaData->xInterface, UNO_QUERY ); in implInsert()
1018 … ::std::pair<const ::rtl::OUString, InterfaceRef >( sName, aElementMetaData.get()->xInterface ) ); in implReplaceByIndex()
1019 m_aItems[ _nIndex ] = aElementMetaData.get()->xInterface; in implReplaceByIndex()
1026 …m_xEventAttacher->attach( _nIndex, aElementMetaData.get()->xInterface, makeAny( aElementMetaData.g… in implReplaceByIndex()
1032 aReplaceEvent.Element = aElementMetaData.get()->xInterface->queryInterface( m_aElementType ); in implReplaceByIndex()
/trunk/main/framework/inc/classes/
H A Dactiontriggerpropertyset.hxx112 …ChangeProperty( const com::sun::star::uno::Reference< com::sun::star::uno::XInterface > xInterface,
/trunk/main/framework/source/uielement/
H A Dtoolbarmanager.cxx1924 Reference< XInterface > xInterface( static_cast< OWeakObject* >( this ), UNO_QUERY ); in IMPL_LINK() local
/trunk/main/framework/test/
H A Dtest.cxx267 Reference< XInterface > xInterface ( xTypeDetection, UNO_QUERY ); in impl_testTypeDetection() local
273 LOG_ASSERT( !( xInterface.is() == sal_False || in impl_testTypeDetection()
/trunk/main/i18npool/source/defaultnumberingprovider/
H A Ddefaultnumberingprovider.cxx784 Reference< XInterface > xInterface; in isScriptFlagEnabled() local
786xInterface = xSMgr->createInstance(OUString::createFromAscii("com.sun.star.configuration.Configura… in isScriptFlagEnabled()
788 Reference< XMultiServiceFactory >(xInterface, UNO_QUERY ); in isScriptFlagEnabled()
799 xInterface = xConfigProvider->createInstanceWithArguments( in isScriptFlagEnabled()
802 xHierarchicalNameAccess.set(xInterface, UNO_QUERY); in isScriptFlagEnabled()
/trunk/main/odk/examples/cpp/DocumentLoader/
H A DDocumentLoader.cxx90 Reference< XInterface > xInterface = in SAL_IMPLEMENT_MAIN_WITH_ARGS() local
95 Reference< XUnoUrlResolver > resolver( xInterface, UNO_QUERY ); in SAL_IMPLEMENT_MAIN_WITH_ARGS()
100 xInterface = Reference< XInterface >( in SAL_IMPLEMENT_MAIN_WITH_ARGS()
112 Reference< XPropertySet > xPropSet( xInterface, UNO_QUERY ); in SAL_IMPLEMENT_MAIN_WITH_ARGS()
/trunk/main/odk/examples/java/Spreadsheet/
H A DChartTypeChange.java146 XInterface xInterface = xEmbeddedObjSupplier.getEmbeddedObject(); in changeChartType() local
149 XChartDocument.class, xInterface); in changeChartType()
/trunk/main/odk/examples/java/Text/
H A DStyleCreation.java56 com.sun.star.uno.XInterface xInterface = (com.sun.star.uno.XInterface) in main() local
77 com.sun.star.beans.XPropertySet.class, xInterface ); in main()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/convwatch/
H A DReportDesignerTest.java206 …XInterface xInterface = (XInterface) m_xXMultiServiceFactory.createInstance( "com.sun.star.frame.D… in getXDesktop() local
207 m_xDesktop = (XDesktop) UnoRuntime.queryInterface(XDesktop.class, xInterface); in getXDesktop()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/graphical/
H A DOpenOfficeDatabaseReportExtractor.java111 …XInterface xInterface = (XInterface) getMultiServiceFactory().createInstance( "com.sun.star.frame.… in getXDesktop() local
112 m_xDesktop = UnoRuntime.queryInterface(XDesktop.class, xInterface); in getXDesktop()
/trunk/main/reportdesign/qa/complex/reportdesign/
H A DReportDesignerTest.java216 … XInterface xInterface = (XInterface) getMSF().createInstance( "com.sun.star.frame.Desktop" ); in getXDesktop() local
217 m_xDesktop = UnoRuntime.queryInterface(XDesktop.class, xInterface); in getXDesktop()
/trunk/main/reportdesign/source/core/sdr/
H A DUndoEnv.cxx564 Reference< XInterface > xInterface; in TogglePropertyListening() local
568 xInterface.set(xContainer->getByIndex( i ),uno::UNO_QUERY); in TogglePropertyListening()
569 TogglePropertyListening(xInterface); in TogglePropertyListening()
594 Reference< XInterface > xInterface; in switchListening() local
598 xInterface.set(_rxContainer->getByIndex( i ),uno::UNO_QUERY); in switchListening()
600 AddElement( xInterface ); in switchListening()
602 RemoveElement( xInterface ); in switchListening()
/trunk/main/reportdesign/source/ui/report/
H A DReportControllerObserver.cxx271 uno::Reference< uno::XInterface > xInterface; in TogglePropertyListening() local
275 xInterface.set(xContainer->getByIndex( i ),uno::UNO_QUERY); in TogglePropertyListening()
276 TogglePropertyListening(xInterface); in TogglePropertyListening()
301 uno::Reference< uno::XInterface > xInterface; in switchListening() local
305 xInterface.set(_rxContainer->getByIndex( i ),uno::UNO_QUERY); in switchListening()
307 AddElement( xInterface ); in switchListening()
309 RemoveElement( xInterface ); in switchListening()
/trunk/main/sc/inc/
H A Daddincol.hxx153 com::sun::star::uno::XInterface>& xInterface );
155 com::sun::star::uno::XInterface>& xInterface,
/trunk/main/sc/source/core/data/
H A Ddocumen6.cxx60 uno::Reference< uno::XInterface > xInterface = xServiceManager->createInstance( in GetBreakIterator() local
62 …pScriptTypeData->xBreakIter = uno::Reference< i18n::XBreakIterator >( xInterface, uno::UNO_QUERY ); in GetBreakIterator()
H A Ddpobject.cxx2355 uno::Reference<uno::XInterface> xInterface; in CreateSource() local
2359 xInterface = xCFac->createInstanceWithContext(xCtx); in CreateSource()
2361 if (!xInterface.is()) in CreateSource()
2365 xInterface = xFac->createInstance(); in CreateSource()
2368 uno::Reference<lang::XInitialization> xInit( xInterface, uno::UNO_QUERY ); in CreateSource()
2380 xRet = uno::Reference<sheet::XDimensionsSupplier>( xInterface, uno::UNO_QUERY ); in CreateSource()

Completed in 234 milliseconds

1234