Lines Matching refs:aContinuations

473 …             uno::Sequence< uno::Reference< task::XInteractionContinuation > > aContinuations( 3 );  in CheckFileDate()  local
474aContinuations[0] = new ::ucbhelper::InteractionAbort( xInteractionRequestImpl.get() ); in CheckFileDate()
475aContinuations[1] = new ::ucbhelper::InteractionApprove( xInteractionRequestImpl.get() ); in CheckFileDate()
476 xInteractionRequestImpl->setContinuations( aContinuations ); in CheckFileDate()
956 uno::Sequence< uno::Reference< task::XInteractionContinuation > > aContinuations( 3 ); in ShowLockedWebDAVDocumentDialog() local
957 aContinuations[0] = new ::ucbhelper::InteractionAbort( xInteractionRequestImpl.get() ); in ShowLockedWebDAVDocumentDialog()
958 aContinuations[1] = new ::ucbhelper::InteractionApprove( xInteractionRequestImpl.get() ); in ShowLockedWebDAVDocumentDialog()
959 aContinuations[2] = new ::ucbhelper::InteractionDisapprove( xInteractionRequestImpl.get() ); in ShowLockedWebDAVDocumentDialog()
960 xInteractionRequestImpl->setContinuations( aContinuations ); in ShowLockedWebDAVDocumentDialog()
1055 uno::Sequence< uno::Reference< task::XInteractionContinuation > > aContinuations( 3 ); in ShowLockedDocumentDialog() local
1056 aContinuations[0] = new ::ucbhelper::InteractionAbort( xInteractionRequestImpl.get() ); in ShowLockedDocumentDialog()
1057 aContinuations[1] = new ::ucbhelper::InteractionApprove( xInteractionRequestImpl.get() ); in ShowLockedDocumentDialog()
1058 aContinuations[2] = new ::ucbhelper::InteractionDisapprove( xInteractionRequestImpl.get() ); in ShowLockedDocumentDialog()
1059 xInteractionRequestImpl->setContinuations( aContinuations ); in ShowLockedDocumentDialog()
1224 … uno::Sequence< uno::Reference< task::XInteractionContinuation > > aContinuations( 2 ); in LockOrigFileOnDemand() local
1225aContinuations[0] = new ::ucbhelper::InteractionAbort( xIgnoreRequestImpl.get() ); in LockOrigFileOnDemand()
1226aContinuations[1] = new ::ucbhelper::InteractionApprove( xIgnoreRequestImpl.get() ); in LockOrigFileOnDemand()
1227 xIgnoreRequestImpl->setContinuations( aContinuations ); in LockOrigFileOnDemand()
1361 … uno::Sequence< uno::Reference< task::XInteractionContinuation > > aContinuations( 2 ); in LockOrigFileOnDemand() local
1362aContinuations[0] = new ::ucbhelper::InteractionAbort( xIgnoreRequestImpl.get() ); in LockOrigFileOnDemand()
1363aContinuations[1] = new ::ucbhelper::InteractionApprove( xIgnoreRequestImpl.get() ); in LockOrigFileOnDemand()
1364 xIgnoreRequestImpl->setContinuations( aContinuations ); in LockOrigFileOnDemand()
4101 …uno::Sequence< uno::Reference< task::XInteractionContinuation > > aContinuations( bAllowAbort ? 2 … in CallApproveHandler() local
4104 aContinuations[ 0 ] = pApprove.get(); in CallApproveHandler()
4109 aContinuations[ 1 ] = pAbort.get(); in CallApproveHandler()
4112 … xHandler->handle(::framework::InteractionRequest::CreateRequest (aRequest,aContinuations)); in CallApproveHandler()