Home
last modified time | relevance | path

Searched refs:xCommandProcessor (Results 1 – 12 of 12) sorted by relevance

/trunk/main/ucb/qa/complex/tdoc/
H A DCheckContentProvider.java324 _XCommandProcessor xCommandProcessor = new _XCommandProcessor(); in checkInterfaces() local
325 xCommandProcessor.oObj = UnoRuntime.queryInterface(XCommandProcessor.class, xContent); in checkInterfaces()
327 xCommandProcessor.before(getMSF()); in checkInterfaces()
328 assertNotNull("createCommandIdentifier()", xCommandProcessor._createCommandIdentifier()); in checkInterfaces()
329 assertNotNull("execute()", xCommandProcessor._execute()); in checkInterfaces()
330 assertNotNull("abort()", xCommandProcessor._abort()); in checkInterfaces()
H A DCheckTransientDocumentsContent.java94 …XCommandProcessor xCommandProcessor = UnoRuntime.queryInterface(XCommandProcessor.class, xContent); in checkTransientDocumentsContent() local
101 Object result = xCommandProcessor.execute(command, 0, null); in checkTransientDocumentsContent()
125 result = xCommandProcessor.execute(command, 0, null); in checkTransientDocumentsContent()
H A DCheckTransientDocumentsDocumentContent.java105 …XCommandProcessor xCommandProcessor = UnoRuntime.queryInterface(XCommandProcessor.class, xContent); in checkTransientDocumentsDocumentContent() local
120 Object result = xCommandProcessor.execute(command, 0, null); in checkTransientDocumentsDocumentContent()
140 result = xCommandProcessor.execute(command, 0, null); in checkTransientDocumentsDocumentContent()
H A DCheckTransientDocumentsContentProvider.java98 …XCommandProcessor xCommandProcessor = UnoRuntime.queryInterface(XCommandProcessor.class, xContent); in checkTransientDocumentsContentProvider() local
107 Object result = xCommandProcessor.execute(command, 0, null); in checkTransientDocumentsContentProvider()
/trunk/main/dbaccess/source/ext/macromigration/
H A Dmigrationengine.cxx162 Reference< XCommandProcessor > xCommandProcessor; member
170 :xCommandProcessor( _rxCommandProcessor ) in SubDocument()
311 … Reference< XCommandProcessor > xCommandProcessor( _rDocument.xCommandProcessor, UNO_SET_THROW ); in lcl_loadSubDocument_nothrow() local
316 xCommandProcessor->execute( in lcl_loadSubDocument_nothrow()
317 aCommand, xCommandProcessor->createCommandIdentifier(), NULL in lcl_loadSubDocument_nothrow()
332 …&& ( lcl_getMimeType_nothrow( _rDocument.xCommandProcessor ).equalsAscii( "application/vnd.sun.xm… in lcl_loadSubDocument_nothrow()
361 … OSL_VERIFY( lcl_executeCommand_throw( _rDocument.xCommandProcessor, "close" ) >>= bSuccess ); in lcl_unloadSubDocument_nothrow()
457 lcl_executeCommand_throw( _rDocument.xCommandProcessor, "store" ); in lcl_storeEmbeddedDocument_nothrow()
1089 Reference< XCommandProcessor > xCommandProcessor( aElement, UNO_QUERY ); in lcl_collectHierarchicalElementNames_throw() local
1090 …OSL_ENSURE( xCommandProcessor.is(), "lcl_collectHierarchicalElementNames_throw: no container, and … in lcl_collectHierarchicalElementNames_throw()
[all …]
/trunk/main/ucb/source/core/
H A Ducbcmds.cxx462 const uno::Reference< ucb::XCommandProcessor > & xCommandProcessor, in setTitle()
480 = xCommandProcessor->execute( aSetPropsCommand, 0, xEnv ); in setTitle()
1775 uno::Reference< ucb::XCommandProcessor > xCommandProcessor( in globalTransfer() local
1777 if ( !xCommandProcessor.is() ) in globalTransfer()
1816 xCommandProcessor->execute( aCommand, 0, xLocalEnv ); in globalTransfer()
1852 xCommandProcessor->execute( aCommand1, 0, xLocalEnv ); in globalTransfer()
1961 uno::Reference< ucb::XCommandProcessor > xCommandProcessor( in globalTransfer() local
1963 if ( !xCommandProcessor.is() ) in globalTransfer()
2001 xCommandProcessor->execute( aGetPropsCommand, 0, xLocalEnv ) >>= xRow; in globalTransfer()
2054 xCommandProcessor->execute( aCommand, 0, xLocalEnv ); in globalTransfer()
/trunk/main/extensions/source/update/feed/
H A Dupdatefeed.cxx483 …uno::Reference< ucb::XCommandProcessor > xCommandProcessor(m_xContentProvider->queryContent(xId), … in load() local
495 sal_Int32 nCommandId = xCommandProcessor->createCommandIdentifier(); in load()
497 storeCommandInfo(nCommandId, xCommandProcessor); in load()
500 uno::Any aResult = xCommandProcessor->execute(aCommand, nCommandId, in load()
507 … uno::Reference< ucb::XCommandProcessor2 > xCommandProcessor2(xCommandProcessor, uno::UNO_QUERY); in load()
515 uno::Reference< ucb::XCommandProcessor2 > xCommandProcessor2(xCommandProcessor, uno::UNO_QUERY); in load()
/trunk/main/dbaccess/source/ui/app/
H A Dsubcomponentmanager.cxx302 … Reference< XCommandProcessor > xCommandProcessor( _rxCommandProcessor, UNO_SET_THROW ); in lcl_closeComponent() local
303 sal_Int32 nCommandIdentifier = xCommandProcessor->createCommandIdentifier(); in lcl_closeComponent()
307 xCommandProcessor->execute( aCommand, nCommandIdentifier, NULL ); in lcl_closeComponent()
/trunk/main/dbaccess/source/core/recovery/
H A Dsubcomponentrecovery.cxx162 Reference< XCommandProcessor > xCommandProcessor; in lcl_getSubComponentDef_nothrow() local
176xCommandProcessor.set( xDefinitionContainer->getByHierarchicalName( i_rName ), UNO_QUERY_THROW ); in lcl_getSubComponentDef_nothrow()
182 return xCommandProcessor; in lcl_getSubComponentDef_nothrow()
/trunk/main/ucbhelper/source/client/
H A Dcontent.cxx1849 Reference< XCommandProcessor > xCommandProcessor; in abortCommand() local
1853 xCommandProcessor = m_xCommandProcessor; in abortCommand()
1856 if ( ( nCommandId != 0 ) && xCommandProcessor.is() ) in abortCommand()
1857 xCommandProcessor->abort( nCommandId ); in abortCommand()
/trunk/main/ucb/workben/ucb/
H A Ducbdemo.cxx1287 uno::Reference< ucb::XCommandProcessor > xCommandProcessor( in transfer() local
1289 if ( xCommandProcessor.is() ) in transfer()
1296 xCommandProcessor->execute( in transfer()
1351 xCommandProcessor->execute( aTransferCommand, 0, xEnv ); in transfer()
/trunk/main/dbaccess/source/core/dataaccess/
H A Ddocumentcontainer.cxx346 Reference< XCommandProcessor > xCommandProcessor(xContent,UNO_QUERY); in createInstanceWithArguments() local
349 xCommandProcessor->execute(aCommand,-1,Reference< XCommandEnvironment >()); in createInstanceWithArguments()