Home
last modified time | relevance | path

Searched refs:bCol16Bit (Results 1 – 6 of 6) sorted by relevance

/AOO41X/main/sc/source/filter/excel/
H A Dxladdress.cxx33 void XclAddress::Read( XclImpStream& rStrm, bool bCol16Bit ) in Read() argument
36 if( bCol16Bit ) in Read()
42 void XclAddress::Write( XclExpStream& rStrm, bool bCol16Bit ) const in Write()
45 if( bCol16Bit ) in Write()
59 void XclRange::Read( XclImpStream& rStrm, bool bCol16Bit ) in Read() argument
62 if( bCol16Bit ) in Read()
71 void XclRange::Write( XclExpStream& rStrm, bool bCol16Bit ) const in Write()
74 if( bCol16Bit ) in Write()
100 void XclRangeList::Read( XclImpStream& rStrm, bool bCol16Bit ) in Read() argument
107 aIt->Read( rStrm, bCol16Bit ); in Read()
[all …]
/AOO41X/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
129 mnCol = bCol16Bit ? rStrm.readuInt16() : rStrm.readuInt8(); in read()
132 void BinAddress::write( BiffOutputStream& rStrm, bool bCol16Bit, bool bRow32Bit ) const in write() argument
138 if( bCol16Bit ) in write()
157 void BinRange::read( BiffInputStream& rStrm, bool bCol16Bit, bool bRow32Bit ) in read() argument
161 maFirst.mnCol = bCol16Bit ? rStrm.readuInt16() : rStrm.readuInt8(); in read()
[all …]
/AOO41X/main/sc/source/filter/inc/
H A Dxladdress.hxx48 void Read( XclImpStream& rStrm, bool bCol16Bit = true );
49 void Write( XclExpStream& rStrm, bool bCol16Bit = true ) const;
98 void Read( XclImpStream& rStrm, bool bCol16Bit = true );
99 void Write( XclExpStream& rStrm, bool bCol16Bit = true ) const;
134 void Read( XclImpStream& rStrm, bool bCol16Bit = true );
135 void Write( XclExpStream& rStrm, bool bCol16Bit = true ) const;
137 size_t nBegin, size_t nCount, bool bCol16Bit = true ) const;
/AOO41X/main/oox/inc/oox/dump/
H A Dbiffdumper.hxx155 sal_Int32 readCol( bool bCol16Bit );
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…
198 sal_Int32 dumpColIndex( const String& rName = EMPTY_STRING, bool bCol16Bit = true );
200 sal_Int32 dumpColRange( const String& rName = EMPTY_STRING, bool bCol16Bit = true );
203 …Address dumpAddress( const String& rName = EMPTY_STRING, bool bCol16Bit = true, bool b…
204 …Range dumpRange( const String& rName = EMPTY_STRING, bool bCol16Bit = true, bool bRo…
205 …void dumpRangeList( const String& rName = EMPTY_STRING, bool bCol16Bit = true, bool…
/AOO41X/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;
/AOO41X/main/oox/source/dump/
H A Dbiffdumper.cxx366 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
[all …]