Lines Matching refs:bRow32Bit

371 sal_Int32 BiffObjectBase::readRow( bool bRow32Bit )  in readRow()  argument
373 return bRow32Bit ? mxBiffStrm->readInt32() : mxBiffStrm->readuInt16(); in readRow()
376 void BiffObjectBase::readAddress( Address& orAddress, bool bCol16Bit, bool bRow32Bit ) in readAddress() argument
378 orAddress.mnRow = readRow( bRow32Bit ); in readAddress()
382 void BiffObjectBase::readRange( Range& orRange, bool bCol16Bit, bool bRow32Bit ) in readRange() argument
384 orRange.maFirst.mnRow = readRow( bRow32Bit ); in readRange()
385 orRange.maLast.mnRow = readRow( bRow32Bit ); in readRange()
390 void BiffObjectBase::readRangeList( RangeList& orRanges, bool bCol16Bit, bool bRow32Bit ) in readRangeList() argument
396 readRange( *aIt, bCol16Bit, bRow32Bit ); in readRangeList()
610 sal_Int32 BiffObjectBase::dumpRowIndex( const String& rName, bool bRow32Bit ) in dumpRowIndex() argument
612 sal_Int32 nRow = readRow( bRow32Bit ); in dumpRowIndex()
625 sal_Int32 BiffObjectBase::dumpRowRange( const String& rName, bool bRow32Bit ) in dumpRowRange() argument
627 sal_Int32 nRow1 = readRow( bRow32Bit ); in dumpRowRange()
628 sal_Int32 nRow2 = readRow( bRow32Bit ); in dumpRowRange()
633 Address BiffObjectBase::dumpAddress( const String& rName, bool bCol16Bit, bool bRow32Bit ) in dumpAddress() argument
636 readAddress( aPos, bCol16Bit, bRow32Bit ); in dumpAddress()
641 Range BiffObjectBase::dumpRange( const String& rName, bool bCol16Bit, bool bRow32Bit ) in dumpRange() argument
644 readRange( aRange, bCol16Bit, bRow32Bit ); in dumpRange()
649 void BiffObjectBase::dumpRangeList( const String& rName, bool bCol16Bit, bool bRow32Bit ) in dumpRangeList() argument
652 readRangeList( aRanges, bCol16Bit, bRow32Bit ); in dumpRangeList()