Home
last modified time | relevance | path

Searched refs:xStore (Results 1 – 25 of 26) sorted by relevance

12

/trunk/main/qadevOOo/java/OOoRunner/src/main/java/mod/_fwk/
H A DModuleUIConfigurationManager.java59 XStorage xStore = null; field in ModuleUIConfigurationManager
80 if (xStore != null) { in cleanup()
81 xStore.dispose(); in cleanup()
120xStore = (XStorage)UnoRuntime.queryInterface(XStorage.class, xStorageService.createInstanceWithArg… in createTestEnvironment()
125 propVal.Value = xStore; in createTestEnvironment()
129 propVal.Value = xStore; in createTestEnvironment()
137 … propVal.Value = (XTransactedObject)UnoRuntime.queryInterface(XTransactedObject.class, xStore); in createTestEnvironment()
/trunk/main/xmlsecurity/workben/
H A Dsignaturetest.cxx367 uno::Reference < embed::XStorage > xStore = ::comphelper::OStorageHelper::GetStorageFromURL( in IMPL_LINK() local
373 xD->signDocumentContent( xStore, NULL ); in IMPL_LINK()
382 uno::Reference < embed::XStorage > xStore = ::comphelper::OStorageHelper::GetStorageFromURL( in IMPL_LINK() local
389 …urity::DocumentSignatureInformation > aInfos = xD->verifyDocumentContentSignatures( xStore, NULL ); in IMPL_LINK()
426 uno::Reference < embed::XStorage > xStore = ::comphelper::OStorageHelper::GetStorageFromURL( in IMPL_LINK() local
429 aSignaturesDialog.SetStorage( xStore ); in IMPL_LINK()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/ui/
H A D_XUIConfigurationStorage.java43 private XStorage xStore = null; field in _XUIConfigurationStorage
46 xStore = (XStorage)tEnv.getObjRelation("XUIConfigurationStorage.Storage"); in before()
56 oObj.setStorage(xStore); in _setStorage()
H A D_XUIConfigurationPersistence.java33 private XStorage xStore = null; field in _XUIConfigurationPersistence
36 xStore = (XStorage)tEnv.getObjRelation("XUIConfigurationStorage.Storage"); in before()
62 oObj.storeToStorage(xStore); in _storeToStorage()
/trunk/main/framework/qa/complex/imageManager/
H A D_XUIConfigurationPersistence.java37 private XStorage xStore = null; field in _XUIConfigurationPersistence
46 xStore = (XStorage)tEnv.get("XUIConfigurationStorage.Storage"); in before()
72 oObj.storeToStorage(xStore); in _storeToStorage()
/trunk/main/dbaccess/source/ui/browser/
H A DdsbrowserDnD.cxx119 …Reference<XStorable> xStore(xChild.is() ? getDataSourceOrModel(xChild->getParent()) : Reference<XI… in queryDrop() local
121 …if ( xStore.is() && !xStore->isReadonly() && ::std::find_if(_rFlavors.begin(),_rFlavors.end(),TApp… in queryDrop()
/trunk/main/filter/source/pdf/
H A Dpdfexport.cxx290 Reference< com::sun::star::frame::XStorable > xStore( m_xSrcDoc, UNO_QUERY ); in write() local
291 if( xStore.is() ) in write()
305 xStore->storeToURL( OUString( RTL_CONSTASCII_USTRINGPARAM( "private:stream" ) ), in write()
319 Reference< com::sun::star::frame::XStorable > xStore( xDoc, UNO_QUERY ); in getMimetypeForDocument() local
323 if( xModuleManager.is() && xStore.is() ) in getMimetypeForDocument()
325 …OUString aDocServiceName = xModuleManager->identify( Reference< XInterface >( xStore, uno::UNO_QUE… in getMimetypeForDocument()
/trunk/main/swext/mediawiki/src/com/sun/star/wiki/
H A DWikiEditorImpl.java391 …XStorable xStore = ( com.sun.star.frame.XStorable )UnoRuntime.queryInterface ( XStorable.class, m_… in SendArticleImpl() local
392 if ( xStore == null ) in SendArticleImpl()
395 xStore.storeToURL( sTemp2Url, lProperties ); in SendArticleImpl()
/trunk/main/sw/source/ui/dbui/
H A Dmmoutputpage.cxx751 …uno::Reference< frame::XStorable > xStore( pTargetView->GetDocShell()->GetModel(), uno::UNO_QUERY); in IMPL_LINK() local
755 xStore->storeToURL( sPath, aValues ); in IMPL_LINK()
803 …uno::Reference< frame::XStorable > xStore( pTargetView->GetDocShell()->GetModel(), uno::UNO_QUERY); in IMPL_LINK() local
807 xStore->storeToURL( sTargetTempURL, aValues ); in IMPL_LINK()
1253 …uno::Reference< frame::XStorable > xStore( pTargetView->GetDocShell()->GetModel(), uno::UNO_QUERY); in IMPL_LINK() local
1254 xStore->storeToURL( sTargetTempURL, aValues ); in IMPL_LINK()
H A Daddresslistdialog.cxx437 uno::Reference<frame::XStorable> xStore(xDS->getDatabaseDocument(), UNO_QUERY_THROW); in IMPL_LINK() local
446 xStore->storeAsURL(sTmpName, Sequence< PropertyValue >()); in IMPL_LINK()
H A Dmmlayoutpage.cxx141 uno::Reference< frame::XStorable > xStore( pView->GetDocShell()->GetModel(), uno::UNO_QUERY); in SwMailMergeLayoutPage() local
142 xStore->storeToURL( m_sExampleURL, aValues ); in SwMailMergeLayoutPage()
H A Ddbmgr.cxx2470 Reference<XStorable> xStore(xDS->getDatabaseDocument(), UNO_QUERY_THROW); in LoadAndRegisterDataSource() local
2478 xStore->storeAsURL(sTmpName, Sequence< PropertyValue >()); in LoadAndRegisterDataSource()
2564 uno::Reference< frame::XStorable > xStore( xDocShell->GetModel(), uno::UNO_QUERY); in ExecuteFormLetter() local
2566 xStore->storeToURL( sTempURL, aValues ); in ExecuteFormLetter()
/trunk/main/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/
H A DFunctionHelper.java649 … com.sun.star.frame.XStorable xStore = (com.sun.star.frame.XStorable)UnoRuntime.queryInterface( in saveDocument() local
653 xStore.store(); in saveDocument()
750 com.sun.star.frame.XStorable xStore = in saveAsHTML() local
754 xStore.storeAsURL(sURL,lProperties); in saveAsHTML()
/trunk/main/dbaccess/source/ui/app/
H A DAppControllerDnD.cxx512 Reference<XStorable> xStore(m_xModel,UNO_QUERY); in isDataSourceReadOnly() local
513 return !xStore.is() || xStore->isReadonly(); in isDataSourceReadOnly()
H A DAppController.cxx1152 Reference< XStorable > xStore( m_xModel, UNO_QUERY_THROW ); in Execute() local
1155 xStore->store(); in Execute()
1186 Reference<XStorable> xStore( m_xModel, UNO_QUERY_THROW ); in Execute() local
1190xStore->storeAsURL( aURL.GetMainURL( INetURLObject::NO_DECODE ), Sequence< PropertyValue >() ); in Execute()
/trunk/main/odk/examples/DevelopersGuide/Database/
H A DCodeSamples.java291 …XStorable xStore = (XStorable)UnoRuntime.queryInterface(XStorable.class,xDs.getDatabaseDocument()); in createQuerydefinition() local
292 xStore.store(); in createQuerydefinition()
/trunk/main/framework/qa/complex/loadAllDocuments/
H A DCheckXComponentLoader.java365 XStorable xStore = UnoRuntime.queryInterface(XStorable.class, xDoc); in impl_createTempOfficeDocument() local
366 xStore.storeAsURL(sTargetURL, lSaveProps); in impl_createTempOfficeDocument()
/trunk/main/sw/source/ui/dochdl/
H A Dswdtflvr.cxx1738 uno::Reference < embed::XStorage > xStore; in _PasteOLE() local
1757 xStore = comphelper::OStorageHelper::GetStorageFromInputStream( xStrm ); in _PasteOLE()
1758 switch( SotStorage::GetFormatID( xStore ) ) in _PasteOLE()
1771 uno::Reference < lang::XComponent > xComp( xStore, uno::UNO_QUERY ); in _PasteOLE()
1773 xStore = 0; in _PasteOLE()
1793 SwReader aReader( xStore, aEmptyStr, rPAM ); in _PasteOLE()
/trunk/main/sc/source/ui/view/
H A Dviewfun5.cxx135 …uno::Reference < embed::XStorage > xStore = ::comphelper::OStorageHelper::GetStorageFromInputStrea… in PasteDataFormat() local
140 SfxMedium* pMedium = new SfxMedium( xStore, String() ); in PasteDataFormat()
/trunk/main/dbaccess/source/ui/dlg/
H A DDbAdminImpl.cxx695 Reference<XStorable> xStore(getDataSourceOrModel(_rxSource),UNO_QUERY); in translateProperties() local
696 _rDest.Put(SfxBoolItem(DSID_READONLY, !xStore.is() || xStore->isReadonly() )); in translateProperties()
H A Ddbwizsetup.cxx829 Reference< XStorable > xStore( xModel, UNO_QUERY_THROW ); in SaveDatabaseDocument() local
840 xStore->storeAsURL( sPath, aArgs.getPropertyValues() ); in SaveDatabaseDocument()
/trunk/main/sfx2/source/doc/
H A Dobjmisc.cxx2221 Reference < embed::XStorage > xStore; in getZipStorageToSign() local
2226 xStore = pMedium->GetZipStorageToSign_Impl(); in getZipStorageToSign()
2228 return xStore; in getZipStorageToSign()
/trunk/main/sd/source/ui/view/
H A Dsdview3.cxx878 …uno::Reference < embed::XStorage > xStore( ::comphelper::OStorageHelper::GetStorageFromInputStream… in InsertData() local
882 SfxMedium *pMedium = new SfxMedium( xStore, String() ); in InsertData()
/trunk/main/comphelper/source/container/
H A Dembeddedobjectcontainer.cxx575 …uno::Reference < embed::XStorage > xStore = ::comphelper::OStorageHelper::GetStorageFromInputStrea… in InsertEmbeddedObject() local
581 xStore->copyToStorage( xNewStore ); in InsertEmbeddedObject()
/trunk/main/framework/source/services/
H A Dautorecovery.cxx2106 … css::uno::Reference< css::frame::XStorable > xStore(rInfo.Document, css::uno::UNO_QUERY_THROW); in lc_removeLockFile() local
2107 ::rtl::OUString aURL = xStore->getLocation(); in lc_removeLockFile()

Completed in 192 milliseconds

12