Lines Matching refs:Output
1766 Output::Output( const Reference< XComponentContext >& rxContext, const OUString& rFileName ) : in Output() function in oox::dump::Output
1780 void Output::newLine() in newLine()
1792 void Output::emptyLine( size_t nCount ) in emptyLine()
1798 void Output::incIndent() in incIndent()
1805 void Output::decIndent() in decIndent()
1811 void Output::resetIndent() in resetIndent()
1816 void Output::startTable( sal_Int32 nW1 ) in startTable()
1821 void Output::startTable( sal_Int32 nW1, sal_Int32 nW2 ) in startTable()
1829 void Output::startTable( sal_Int32 nW1, sal_Int32 nW2, sal_Int32 nW3 ) in startTable()
1838 void Output::startTable( sal_Int32 nW1, sal_Int32 nW2, sal_Int32 nW3, sal_Int32 nW4 ) in startTable()
1848 void Output::startTable( size_t nColCount, const sal_Int32* pnColWidths ) in startTable()
1860 void Output::tab() in tab()
1865 void Output::tab( size_t nCol ) in tab()
1881 void Output::endTable() in endTable()
1886 void Output::resetItemIndex( sal_Int64 nIdx ) in resetItemIndex()
1891 void Output::startItem( const String& rItemName ) in startItem()
1907 void Output::contItem() in contItem()
1917 void Output::endItem() in endItem()
1935 void Output::startMultiItems() in startMultiItems()
1940 void Output::endMultiItems() in endMultiItems()
1950 void Output::writeChar( sal_Unicode cChar, sal_Int32 nCount ) in writeChar()
1955 void Output::writeAscii( const sal_Char* pcStr ) in writeAscii()
1961 void Output::writeString( const OUString& rStr ) in writeString()
1966 void Output::writeArray( const sal_uInt8* pnData, sal_Size nSize, sal_Unicode cSep ) in writeArray()
1977 void Output::writeBool( bool bData ) in writeBool()
1982 void Output::writeColorABGR( sal_Int32 nColor ) in writeColorABGR()
1994 void Output::writeDateTime( const DateTime& rDateTime ) in writeDateTime()
2009 void Output::writeColIndex( sal_Int32 nCol ) in writeColIndex()
2014 void Output::writeRowIndex( sal_Int32 nRow ) in writeRowIndex()
2019 void Output::writeColRowRange( sal_Int32 nColRow1, sal_Int32 nColRow2 ) in writeColRowRange()
2026 void Output::writeColRange( sal_Int32 nCol1, sal_Int32 nCol2 ) in writeColRange()
2033 void Output::writeRowRange( sal_Int32 nRow1, sal_Int32 nRow2 ) in writeRowRange()
2040 void Output::writeAddress( const Address& rPos ) in writeAddress()
2045 void Output::writeRange( const Range& rRange ) in writeRange()
2050 void Output::writeRangeList( const RangeList& rRanges ) in writeRangeList()
2057 bool Output::implIsValid() const in implIsValid()
2062 void Output::writeItemName( const String& rItemName ) in writeItemName()
2329 mxOut.reset( new Output( getContext(), rSysFileName + OOX_DUMP_DUMPEXT ) ); in construct()