Home
last modified time | relevance | path

Searched refs:xOut (Results 1 – 25 of 58) sorted by relevance

123

/trunk/main/xmlscript/source/xmllib_imexp/
H A Dxmllib_export.cxx51 xOut->startDocument(); in exportLibraryContainer()
56 xOut->unknown( aDocTypeStr ); in exportLibraryContainer()
57 xOut->ignorableWhitespace( OUString() ); in exportLibraryContainer()
70 xOut->ignorableWhitespace( OUString() ); in exportLibraryContainer()
104 pLibElement->dump( xOut.get() ); in exportLibraryContainer()
108 xOut->endElement( aLibrariesName ); in exportLibraryContainer()
110 xOut->endDocument(); in exportLibraryContainer()
121 xOut->startDocument(); in exportLibrary()
126 xOut->unknown( aDocTypeStr ); in exportLibrary()
166 pLibElement->dump( xOut.get() ); in exportLibrary()
[all …]
/trunk/main/scripting/source/storage/
H A DXMLElement.cxx65 void XMLElement::dumpSubElements( Reference< xml::sax::XExtendedDocumentHandler > const & xOut ) in dumpSubElements() argument
72 pElem->dump( xOut ); in dumpSubElements()
77 void XMLElement::dump( Reference< xml::sax::XExtendedDocumentHandler > const & xOut ) in dump() argument
81 xOut->ignorableWhitespace( OUString() ); in dump()
84 xOut->startElement( _name, static_cast< xml::sax::XAttributeList * >( this ) ); in dump()
88 xOut->ignorableWhitespace( OUString() ); in dump()
89 xOut->characters( _chars ); in dump()
92 dumpSubElements( xOut ); in dump()
93 xOut->ignorableWhitespace( OUString() ); in dump()
94 xOut->endElement( _name ); in dump()
/trunk/main/xmlscript/source/xmlmod_imexp/
H A Dxmlmod_export.cxx41 Reference< xml::sax::XExtendedDocumentHandler > const & xOut, in exportScriptModule()
45 xOut->startDocument(); in exportScriptModule()
50 xOut->unknown( aDocTypeStr ); in exportScriptModule()
51 xOut->ignorableWhitespace( OUString() ); in exportScriptModule()
68 xOut->ignorableWhitespace( OUString() ); in exportScriptModule()
69 xOut->startElement( aModuleName, xAttributes ); in exportScriptModule()
70 xOut->characters( rMod.aCode ); in exportScriptModule()
71 xOut->endElement( aModuleName ); in exportScriptModule()
72 xOut->endDocument(); in exportScriptModule()
/trunk/main/xmlscript/source/xml_helper/
H A Dxml_element.cxx57 void XMLElement::dumpSubElements( Reference< xml::sax::XDocumentHandler > const & xOut ) in dumpSubElements() argument
62 pElem->dump( xOut ); in dumpSubElements()
66 void XMLElement::dump( Reference< xml::sax::XDocumentHandler > const & xOut ) in dump() argument
68 xOut->ignorableWhitespace( OUString() ); in dump()
69 xOut->startElement( _name, static_cast< xml::sax::XAttributeList * >( this ) ); in dump()
71 dumpSubElements( xOut ); in dump()
73 xOut->ignorableWhitespace( OUString() ); in dump()
74 xOut->endElement( _name ); in dump()
/trunk/main/xmlscript/source/xmldlg_imexp/
H A Dxmldlg_export.cxx1346 xOut->endElement( aStylesName ); in dump()
1586 xOut->startDocument(); in exportDialogModel()
1591 xOut->unknown( aDocTypeStr ); in exportDialogModel()
1592 xOut->ignorableWhitespace( OUString() ); in exportDialogModel()
1604 xOut->ignorableWhitespace( OUString() ); in exportDialogModel()
1607 pWindow->dumpSubElements( xOut.get() ); in exportDialogModel()
1609 all_styles.dump( xOut ); in exportDialogModel()
1622 pElem->dump( xOut.get() ); in exportDialogModel()
1627 xOut->endElement( aBBoardName ); in exportDialogModel()
1632 xOut->endElement( aWindowName ); in exportDialogModel()
[all …]
/trunk/main/connectivity/source/drivers/hsqldb/
H A DHStorageAccess.cxx390 Reference< XOutputStream> xOut = pHelper->getOutputStream(); in Java_com_sun_star_sdbcx_comp_hsqldb_NativeStorageAccess_seek() local
391 OSL_ENSURE(xOut.is(),"No output stream!"); in Java_com_sun_star_sdbcx_comp_hsqldb_NativeStorageAccess_seek()
409 xOut->writeBytes(aData); in Java_com_sun_star_sdbcx_comp_hsqldb_NativeStorageAccess_seek()
430 …Reference< XOutputStream> xOut = pHelper.get() ? pHelper->getOutputStream() : Reference< XOutputSt… in write_to_storage_stream_from_buffer() local
431 OSL_ENSURE(xOut.is(),"Stream is NULL"); in write_to_storage_stream_from_buffer()
435 if ( xOut.is() ) in write_to_storage_stream_from_buffer()
448 xOut->writeBytes(aData); in write_to_storage_stream_from_buffer()
496 …Reference< XOutputStream> xOut = pHelper.get() ? pHelper->getOutputStream() : Reference< XOutputSt… in write_to_storage_stream() local
497 OSL_ENSURE(xOut.is(),"Stream is NULL"); in write_to_storage_stream()
500 if ( xOut.is() ) in write_to_storage_stream()
[all …]
/trunk/main/svx/source/xml/
H A Dxmlexport.cxx52 sal_Bool SvxDrawingLayerExport( SdrModel* pModel, const uno::Reference<io::XOutputStream>& xOut, co… in SvxDrawingLayerExport() argument
54 …return SvxDrawingLayerExport( pModel, xOut, xComponent, "com.sun.star.comp.DrawingLayer.XMLExporte… in SvxDrawingLayerExport()
57 sal_Bool SvxDrawingLayerExport( SdrModel* pModel, const uno::Reference<io::XOutputStream>& xOut, co… in SvxDrawingLayerExport() argument
59 sal_Bool bDocRet = xOut.is(); in SvxDrawingLayerExport()
108 xDocSrc->setOutputStream( xOut ); in SvxDrawingLayerExport()
154 sal_Bool SvxDrawingLayerExport( SdrModel* pModel, const uno::Reference<io::XOutputStream>& xOut ) in SvxDrawingLayerExport() argument
157 return SvxDrawingLayerExport( pModel, xOut, xComponent ); in SvxDrawingLayerExport()
H A Dxmleohlp.cxx83 Reference < XOutputStream > xOut; member in OutputStorageWrapper_Impl
106 xOut = new OOutputStreamWrapper( *pStream ); in OutputStorageWrapper_Impl()
125 xOut->writeBytes( aData ); in writeBytes()
132 xOut->flush(); in flush()
139 xOut->closeOutput(); in closeOutput()
H A Dxmlxtexp.cxx190 uno::Reference < io::XOutputStream > xOut; in save() local
226 xOut = xStream->getOutputStream(); in save()
240 xOut = new utl::OOutputStreamWrapper( *pStream ); in save()
244 xMetaSrc->setOutputStream( xOut ); in save()
/trunk/main/unotools/source/config/
H A Daccelcfg.cxx142 com::sun::star::uno::Reference < ::com::sun::star::io::XInputStream > xOut( &aHelper ); in SvtAcceleratorConfiguration() local
146 pOptions = new SvtAcceleratorConfig_Impl( xOut ); in SvtAcceleratorConfiguration()
175 com::sun::star::uno::Reference < ::com::sun::star::io::XInputStream > xOut( &aHelper ); in CreateFromStream() local
178 pRet->pImp = new SvtAcceleratorConfig_Impl( xOut ); in CreateFromStream()
213 com::sun::star::uno::Reference < ::com::sun::star::io::XOutputStream > xOut( &aHelper ); in ~SvtAcceleratorConfiguration() local
214 pImp->Commit( xOut ); in ~SvtAcceleratorConfiguration()
/trunk/main/framework/source/accelerators/
H A Dacceleratorconfiguration.cxx393 xOut = xStream->getOutputStream(); in store()
395 if (!xOut.is()) in store()
400 impl_ts_save(xOut); in store()
402 xOut.clear(); in store()
420 xOut = xStream->getOutputStream(); in storeToStorage()
422 if (!xOut.is()) in storeToStorage()
427 impl_ts_save(xOut); in storeToStorage()
454 xOut = xStream->getOutputStream(); in isReadOnly()
455 return !(xOut.is()); in isReadOnly()
1110 if (!xOut.is()) in storeToStorage()
[all …]
/trunk/main/connectivity/source/inc/java/
H A Dtools.hxx54 ::com::sun::star::uno::Sequence< T > xOut; in copyArrayAndDelete()
58 xOut.realloc(nLen); in copyArrayAndDelete()
63 xOut.getArray()[i] = xInfo; in copyArrayAndDelete()
67 return xOut; in copyArrayAndDelete()
/trunk/main/basic/source/uno/
H A Dscriptcont.cxx659 Reference< XOutputStream > xOut = xCodeStream->getOutputStream(); in implStorePasswordLibrary() local
660 if ( !xOut.is() ) in implStorePasswordLibrary()
663 xOut->writeBytes( aBinSeq ); in implStorePasswordLibrary()
664 xOut->closeOutput(); in implStorePasswordLibrary()
800 Reference< XOutputStream > xOut = xCodeStream->getOutputStream(); in implStorePasswordLibrary() local
801 if ( xOut.is() ) in implStorePasswordLibrary()
803 xOut->writeBytes( aBinSeq ); in implStorePasswordLibrary()
804 xOut->closeOutput(); in implStorePasswordLibrary()
841 Reference< XOutputStream > xOut = xSourceStream->getOutputStream(); in implStorePasswordLibrary() local
843 writeLibraryElement( xLib, aElementName, xOut ); in implStorePasswordLibrary()
/trunk/main/ucb/source/ucp/tdoc/
H A Dtdoc_content.cxx1575 if ( xOut.is() ) in open()
1617 xOut->closeOutput(); in open()
2555 uno::Reference< io::XOutputStream > xOut; in storeData() local
2575 xOut->writeBytes( aBuffer ); in storeData()
2580 closeOutputStream( xOut ); in storeData()
2586 closeOutputStream( xOut ); in storeData()
2593 closeOutputStream( xOut ); in storeData()
2600 closeOutputStream( xOut ); in storeData()
2605 closeOutputStream( xOut ); in storeData()
2851 if ( xOut.is() ) in closeOutputStream()
[all …]
/trunk/main/connectivity/source/drivers/jdbc/
H A DJDriver.cxx108 Reference< XConnection > xOut; in connect() local
112 xOut = pConnection; in connect()
114 xOut.clear(); // an error occurred and the java driver didn't throw an exception in connect()
118 return xOut; in connect()
/trunk/main/xmloff/source/core/
H A DXMLBase64ImportContext.cxx48 xOut( rOut ) in XMLBase64ImportContext()
59 xOut->closeOutput(); in EndElement()
82 xOut->writeBytes( aBuffer ); in Characters()
/trunk/main/reportdesign/source/core/api/
H A DReportEngineJFree.cxx221 …uno::Reference< embed::XStorage > xOut = OStorageHelper::GetStorageFromURL(sFileURL,embed::Element… in getNewOutputName() local
222 utl::DisposableComponent aOut(xOut); in getNewOutputName()
223 xStorageProp.set(xOut,uno::UNO_QUERY); in getNewOutputName()
229 aConvertedProperties[nPos++].Value <<= xOut; in getNewOutputName()
266 uno::Reference<embed::XTransactedObject> xTransact(xOut,uno::UNO_QUERY); in getNewOutputName()
/trunk/main/filter/source/msfilter/
H A Dmsoleexp.cxx213 … ::uno::Reference < io::XOutputStream > xOut = new ::utl::OOutputStreamWrapper( *pStream ); in ExportOLEObject()
214 aSeq[0].Value <<= xOut; in ExportOLEObject()
313 … ::uno::Reference < io::XOutputStream > xOut = new ::utl::OOutputStreamWrapper( *xEmbStm ); in ExportOLEObject()
314 aSeq[0].Value <<= xOut; in ExportOLEObject()
/trunk/main/ucb/source/ucp/gio/
H A Dgio_content.cxx790 uno::Reference< io::XOutputStream > xOut ) in copyData()
794 g_return_if_fail( xIn.is() && xOut.is() ); in copyData()
797 xOut->writeBytes( theData ); in copyData()
799 xOut->closeOutput(); in copyData()
808 …uno::Reference< io::XOutputStream > xOut = uno::Reference< io::XOutputStream >(xSink, uno::UNO_QUE… in feedSink() local
811 if ( !xOut.is() && !xDataSink.is() ) in feedSink()
823 if ( xOut.is() ) in feedSink()
824 copyData( xIn, xOut ); in feedSink()
/trunk/main/comphelper/source/streaming/
H A Dseekableinput.cxx40 const uno::Reference< io::XOutputStream >& xOut ) in copyInputToOutput_Impl()
51 xOut->writeBytes( aTempBuf ); in copyInputToOutput_Impl()
54 xOut->writeBytes( aSequence ); in copyInputToOutput_Impl()
/trunk/main/svx/inc/svx/
H A Dunomodel.hxx98 … SdrModel* pModel, const com::sun::star::uno::Reference<com::sun::star::io::XOutputStream>& xOut );
99 … const com::sun::star::uno::Reference<com::sun::star::io::XOutputStream>& xOut, const com::sun::st…
100 … const com::sun::star::uno::Reference<com::sun::star::io::XOutputStream>& xOut, const com::sun::st…
/trunk/main/ucb/source/ucp/gvfs/
H A Dgvfs_content.cxx1420 uno::Reference< io::XOutputStream > xOut ) in copyData()
1424 g_return_if_fail( xIn.is() && xOut.is() ); in copyData()
1427 xOut->writeBytes( theData ); in copyData()
1429 xOut->closeOutput(); in copyData()
1513 uno::Reference< io::XOutputStream > xOut in feedSink() local
1518 if ( !xOut.is() && !xDataSink.is() ) in feedSink()
1525 if ( xOut.is() ) in feedSink()
1526 copyData( xIn, xOut ); in feedSink()
/trunk/main/sw/source/core/swg/
H A DSwXMLTextBlocks1.cxx433 uno::Reference < io::XOutputStream > xOut = xDocStream->getOutputStream(); in PutBlockText() local
435 xSrc->setOutputStream(xOut); in PutBlockText()
581 uno::Reference < io::XOutputStream > xOut = xDocStream->getOutputStream(); in WriteInfo() local
583 xSrc->setOutputStream(xOut); in WriteInfo()
/trunk/main/package/source/package/zipapi/
H A DXUnbufferedStream.cxx314 …uno::Reference< io::XOutputStream > xOut = xAccess->openFileWrite( ::rtl::OUString::createFromAsci… in readBytes()
315 xOut->writeBytes( aData ); in readBytes()
316 xOut->closeOutput(); in readBytes()
/trunk/main/io/source/stm/
H A Dopump.cxx437 void Pump::setOutputStream( const Reference< XOutputStream >& xOut ) throw() in setOutputStream() argument
440 m_xOutput = xOut; in setOutputStream()
441 Reference< XConnectable > xConnect( xOut, UNO_QUERY ); in setOutputStream()

Completed in 144 milliseconds

123