Lines Matching refs:mxStrm

1767mxStrm( InputOutputHelper::openTextOutputStream( rxContext, rFileName, RTL_TEXTENCODING_UTF8 ) ),  in Output()
1774 if( mxStrm.is() ) in Output()
1775 mxStrm->writeString( OUString( OOX_DUMP_BOM ) ); in Output()
1784 mxStrm->writeString( maIndent ); in newLine()
1786 mxStrm->writeString( maLine.makeStringAndClear() ); in newLine()
1795 mxStrm->writeString( OUString( sal_Unicode( '\n' ) ) ); in emptyLine()
2059 return mxStrm.is(); in implIsValid()
2506 mxStrm = rxStrm; in construct()
2512 mxStrm = rxStrm; in construct()
2522 return mxStrm.get() && OutputObjectBase::implIsValid(); in implIsValid()
2527 sal_Int64 nEndPos = ::std::min< sal_Int64 >( mxStrm->tell() + nBytes, mxStrm->size() ); in skipBlock()
2528 if( mxStrm->tell() < nEndPos ) in skipBlock()
2531 … writeDecItem( "skipped-data-size", static_cast< sal_uInt64 >( nEndPos - mxStrm->tell() ) ); in skipBlock()
2532 mxStrm->seek( nEndPos ); in skipBlock()
2547 bool bSeekable = mxStrm->size() >= 0; in dumpRawBinary()
2548 …sal_Int64 nEndPos = bSeekable ? ::std::min< sal_Int64 >( mxStrm->tell() + nBytes, mxStrm->size() )… in dumpRawBinary()
2549 …sal_Int64 nDumpEnd = bSeekable ? ::std::min< sal_Int64 >( mxStrm->tell() + nMaxShowSize, nEndPos )… in dumpRawBinary()
2550 sal_Int64 nPos = bSeekable ? mxStrm->tell() : 0; in dumpRawBinary()
2559 …sal_Int32 nLineSize = bSeekable ? ::std::min( static_cast< sal_Int32 >( nDumpEnd - mxStrm->tell() … in dumpRawBinary()
2560 sal_Int32 nReadSize = mxStrm->readMemory( pnLineData, nLineSize ); in dumpRawBinary()
2587 skipBlock( nEndPos - mxStrm->tell() ); in dumpRawBinary()
2614 if( mxStrm->isEof() || (mxStrm->tell() > nPos) ) in dumpRemainingTo()
2617 dumpRemaining( nPos - mxStrm->tell() ); in dumpRemainingTo()
2618 mxStrm->seek( nPos ); in dumpRemainingTo()
2623 dumpRemainingTo( mxStrm->size() ); in dumpRemainingStream()
2628 …sal_Int32 nDumpSize = getLimitedValue< sal_Int32, sal_Int64 >( mxStrm->size() - mxStrm->tell(), 0,… in dumpArray()
2636 mxStrm->readMemory( pnData, nDumpSize ); in dumpArray()
2646 *mxStrm >> nChar; in dumpChar()
2656 *mxStrm >> nChar; in dumpUnicode()
2664 …sal_Int32 nDumpSize = getLimitedValue< sal_Int32, sal_Int64 >( mxStrm->size() - mxStrm->tell(), 0,… in dumpCharArray()
2669 sal_Int32 nCharsRead = mxStrm->readMemory( &aBuffer.front(), nLen ); in dumpCharArray()
2682 for( sal_Int32 nIndex = 0; !mxStrm->isEof() && (nIndex < nLen); ++nIndex ) in dumpUnicodeArray()
2683 aBuffer.append( static_cast< sal_Unicode >( mxStrm->readuInt16() ) ); in dumpUnicodeArray()
2695 for( *mxStrm >> nChar; !mxStrm->isEof() && (nChar > 0); *mxStrm >> nChar ) in dumpNullCharArray()
2706 for( *mxStrm >> nChar; !mxStrm->isEof() && (nChar > 0); *mxStrm >> nChar ) in dumpNullUnicodeArray()
2716 *mxStrm >> nRk; in dumpRk()
2723 *mxStrm >> nColor; in dumpColorABGR()
2784 *mxStrm >> nData32; in dumpGuid()
2787 *mxStrm >> nData16; in dumpGuid()
2790 *mxStrm >> nData16; in dumpGuid()
2793 *mxStrm >> nData8; in dumpGuid()
2795 *mxStrm >> nData8; in dumpGuid()
2800 *mxStrm >> nData8; in dumpGuid()
2843 mxStrm->seekToStart(); in dumpBinaryStream()
2844 dumpRawBinary( mxStrm->size(), bShowOffset, true ); in dumpBinaryStream()
2888 if( mxStrm.get() ) in constructTextStrmObj()
2889 mxTextStrm.reset( new TextInputStream( getContext(), *mxStrm, eTextEnc ) ); in constructTextStrmObj()
3054 sal_Int64 nRecPos = mxStrm->tell(); in implDump()
3067 if( !mxStrm->isEof() && (mxStrm->tell() == nRecPos) ) in implDump()
3143 mxStrm->seekToStart(); in implStartRecord()