Home
last modified time | relevance | path

Searched refs:FastSerializerHelper (Results 1 – 4 of 4) sorted by relevance

/trunk/main/sax/source/tools/
H A Dfshelper.cxx33 FastSerializerHelper::FastSerializerHelper(const Reference< io::XOutputStream >& xOutputStream ) : in FastSerializerHelper() function in sax_fastparser::FastSerializerHelper
45 FastSerializerHelper::~FastSerializerHelper() in ~FastSerializerHelper()
51 void FastSerializerHelper::startElement(const char* elementName, ...) in startElement()
70 void FastSerializerHelper::singleElement(const char* elementName, ...) in singleElement()
89 void FastSerializerHelper::endElement(const char* elementName) in endElement()
94 void FastSerializerHelper::startElementV(sal_Int32 elementTokenId, va_list args) in startElementV()
112 void FastSerializerHelper::singleElementV(sal_Int32 elementTokenId, va_list args) in singleElementV()
130 void FastSerializerHelper::endElement(sal_Int32 elementTokenId) in endElement()
135 void FastSerializerHelper::startElementV(sal_Int32 elementTokenId, XFastAttributeListRef xAttrList) in startElementV()
141 void FastSerializerHelper::singleElement(const char* elementName, XFastAttributeListRef xAttrList) in singleElement()
[all …]
/trunk/main/sax/inc/sax/
H A Dfshelper.hxx46 class SAX_DLLPUBLIC FastSerializerHelper class
50FastSerializerHelper( const ::com::sun::star::uno::Reference< ::com::sun::star::io::XOutputStream …
52 ~FastSerializerHelper();
84 FastSerializerHelper* write(const char* value);
85 FastSerializerHelper* write(const rtl::OUString& value);
86 FastSerializerHelper* write(sal_Int32 value);
87 FastSerializerHelper* write(sal_Int64 value);
88 FastSerializerHelper* write(float value);
89 FastSerializerHelper* write(double value);
91 FastSerializerHelper* writeEscaped(const char* value);
[all …]
/trunk/main/oox/inc/oox/core/
H A Dxmlfilterbase.hxx52 class FastSerializerHelper;
54 typedef boost::shared_ptr< FastSerializerHelper > FSHelperPtr;
/trunk/main/oox/source/core/
H A Dxmlfilterbase.cxx63 using ::sax_fastparser::FastSerializerHelper;
252 return FSHelperPtr( new FastSerializerHelper( openFragmentStream( rStreamName, rMediaType ) ) ); in openFragmentStreamWithSerializer()