Lines Matching refs:bCol16Bit

366 sal_Int32 BiffObjectBase::readCol( bool bCol16Bit )  in readCol()  argument
368 return bCol16Bit ? mxBiffStrm->readuInt16() : mxBiffStrm->readuInt8(); in readCol()
376 void BiffObjectBase::readAddress( Address& orAddress, bool bCol16Bit, bool bRow32Bit ) in readAddress() argument
379 orAddress.mnCol = readCol( bCol16Bit ); in readAddress()
382 void BiffObjectBase::readRange( Range& orRange, bool bCol16Bit, bool bRow32Bit ) in readRange() argument
386 orRange.maFirst.mnCol = readCol( bCol16Bit ); in readRange()
387 orRange.maLast.mnCol = readCol( bCol16Bit ); in readRange()
390 void BiffObjectBase::readRangeList( RangeList& orRanges, bool bCol16Bit, bool bRow32Bit ) in readRangeList() argument
396 readRange( *aIt, bCol16Bit, bRow32Bit ); in readRangeList()
603 sal_Int32 BiffObjectBase::dumpColIndex( const String& rName, bool bCol16Bit ) in dumpColIndex() argument
605 sal_Int32 nCol = readCol( bCol16Bit ); in dumpColIndex()
617 sal_Int32 BiffObjectBase::dumpColRange( const String& rName, bool bCol16Bit ) in dumpColRange() argument
619 sal_Int32 nCol1 = readCol( bCol16Bit ); in dumpColRange()
620 sal_Int32 nCol2 = readCol( bCol16Bit ); in dumpColRange()
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()