Searched refs:bCol16Bit (Results 1 – 6 of 6) sorted by relevance
/aoo41x/main/sc/source/filter/excel/ |
H A D | xladdress.cxx | 33 void XclAddress::Read( XclImpStream& rStrm, bool bCol16Bit ) in Read() argument 36 if( bCol16Bit ) in Read() 45 if( bCol16Bit ) in Write() 59 void XclRange::Read( XclImpStream& rStrm, bool bCol16Bit ) in Read() argument 62 if( bCol16Bit ) in Read() 74 if( bCol16Bit ) in Write() 100 void XclRangeList::Read( XclImpStream& rStrm, bool bCol16Bit ) in Read() argument 107 aIt->Read( rStrm, bCol16Bit ); in Read() 112 WriteSubList( rStrm, 0, size(), bCol16Bit ); in Write() 121 rStrm.SetSliceSize( bCol16Bit ? 8 : 6 ); in WriteSubList() [all …]
|
/aoo41x/main/oox/source/xls/ |
H A D | addressconverter.cxx | 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() 129 mnCol = bCol16Bit ? rStrm.readuInt16() : rStrm.readuInt8(); in read() 138 if( bCol16Bit ) in write() 161 maFirst.mnCol = bCol16Bit ? rStrm.readuInt16() : rStrm.readuInt8(); in read() 162 maLast.mnCol = bCol16Bit ? rStrm.readuInt16() : rStrm.readuInt8(); in read() 171 if( bCol16Bit ) in write() 210 aIt->read( rStrm, bCol16Bit, bRow32Bit ); in read() 215 writeSubList( rStrm, 0, size(), bCol16Bit, bRow32Bit ); in write() [all …]
|
/aoo41x/main/sc/source/filter/inc/ |
H A D | xladdress.hxx | 48 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 D | biffdumper.hxx | 155 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 D | addressconverter.hxx | 69 … 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 D | biffdumper.cxx | 366 sal_Int32 BiffObjectBase::readCol( bool bCol16Bit ) in readCol() argument 379 orAddress.mnCol = readCol( bCol16Bit ); in readAddress() 386 orRange.maFirst.mnCol = readCol( bCol16Bit ); in readRange() 387 orRange.maLast.mnCol = readCol( bCol16Bit ); in readRange() 396 readRange( *aIt, bCol16Bit, bRow32Bit ); in readRangeList() 605 sal_Int32 nCol = readCol( bCol16Bit ); in dumpColIndex() 619 sal_Int32 nCol1 = readCol( bCol16Bit ); in dumpColRange() 620 sal_Int32 nCol2 = readCol( bCol16Bit ); in dumpColRange() 636 readAddress( aPos, bCol16Bit, bRow32Bit ); in dumpAddress() 644 readRange( aRange, bCol16Bit, bRow32Bit ); in dumpRange() [all …]
|
Completed in 49 milliseconds