Home
last modified time | relevance | path

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

/trunk/main/oox/source/xls/
H A Daddressconverter.cxx97 inline sal_uInt8 lclGetBiffAddressSize( bool bCol16Bit, bool bRow32Bit ) in lclGetBiffAddressSize() argument
99 return (bCol16Bit ? 2 : 1) + (bRow32Bit ? 4 : 2); in lclGetBiffAddressSize()
102 inline sal_uInt8 lclGetBiffRangeSize( bool bCol16Bit, bool bRow32Bit ) in lclGetBiffRangeSize() argument
104 return 2 * lclGetBiffAddressSize( bCol16Bit, bRow32Bit ); in lclGetBiffRangeSize()
126 void BinAddress::read( BiffInputStream& rStrm, bool bCol16Bit, bool bRow32Bit ) in read() argument
128 mnRow = bRow32Bit ? rStrm.readInt32() : rStrm.readuInt16(); in read()
132 void BinAddress::write( BiffOutputStream& rStrm, bool bCol16Bit, bool bRow32Bit ) const in write()
134 if( bRow32Bit ) in write()
157 void BinRange::read( BiffInputStream& rStrm, bool bCol16Bit, bool bRow32Bit ) in read() argument
159 maFirst.mnRow = bRow32Bit ? rStrm.readInt32() : rStrm.readuInt16(); in read()
[all …]
/trunk/main/oox/inc/oox/dump/
H A Dbiffdumper.hxx156 sal_Int32 readRow( bool bRow32Bit );
157 …void readAddress( Address& orAddress, bool bCol16Bit = true, bool bRow32Bit = false…
158 void readRange( Range& orRange, bool bCol16Bit = true, bool bRow32Bit = false );
159 …void readRangeList( RangeList& orRanges, bool bCol16Bit = true, bool bRow32Bit = fa…
199 sal_Int32 dumpRowIndex( const String& rName = EMPTY_STRING, bool bRow32Bit = false );
201 sal_Int32 dumpRowRange( const String& rName = EMPTY_STRING, bool bRow32Bit = false );
203 … dumpAddress( const String& rName = EMPTY_STRING, bool bCol16Bit = true, bool bRow32Bit = false );
204 … dumpRange( const String& rName = EMPTY_STRING, bool bCol16Bit = true, bool bRow32Bit = false );
205 …dumpRangeList( const String& rName = EMPTY_STRING, bool bCol16Bit = true, bool bRow32Bit = false );
/trunk/main/oox/inc/oox/xls/
H A Daddressconverter.hxx69 … void read( BiffInputStream& rStrm, bool bCol16Bit = true, bool bRow32Bit = false );
70 …void write( BiffOutputStream& rStrm, bool bCol16Bit = true, bool bRow32Bit = false …
134 … void read( BiffInputStream& rStrm, bool bCol16Bit = true, bool bRow32Bit = false );
135 …void write( BiffOutputStream& rStrm, bool bCol16Bit = true, bool bRow32Bit = false …
179 … void read( BiffInputStream& rStrm, bool bCol16Bit = true, bool bRow32Bit = false );
180 …void write( BiffOutputStream& rStrm, bool bCol16Bit = true, bool bRow32Bit = false …
182 … size_t nBegin, size_t nCount, bool bCol16Bit = true, bool bRow32Bit = false ) const;
/trunk/main/oox/source/dump/
H A Dbiffdumper.cxx371 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
[all …]