Lines Matching refs:aScPos

279     ScAddress aScPos( ScAddress::UNINITIALIZED );  in ReadBlank()  local
280 if( GetAddressConverter().ConvertAddress( aScPos, aXclPos, GetCurrScTab(), true ) ) in ReadBlank()
282 sal_uInt16 nXFIdx = ReadXFIndex( aScPos, maStrm.GetRecId() == EXC_ID2_BLANK ); in ReadBlank()
284 GetXFRangeBuffer().SetBlankXF( aScPos, nXFIdx ); in ReadBlank()
293 ScAddress aScPos( ScAddress::UNINITIALIZED ); in ReadInteger() local
294 if( GetAddressConverter().ConvertAddress( aScPos, aXclPos, GetCurrScTab(), true ) ) in ReadInteger()
296 sal_uInt16 nXFIdx = ReadXFIndex( aScPos, true ); in ReadInteger()
300 GetXFRangeBuffer().SetXF( aScPos, nXFIdx ); in ReadInteger()
301 GetDoc().PutCell( aScPos, new ScValueCell( nValue ) ); in ReadInteger()
310 ScAddress aScPos( ScAddress::UNINITIALIZED ); in ReadNumber() local
311 if( GetAddressConverter().ConvertAddress( aScPos, aXclPos, GetCurrScTab(), true ) ) in ReadNumber()
313 sal_uInt16 nXFIdx = ReadXFIndex( aScPos, maStrm.GetRecId() == EXC_ID2_NUMBER ); in ReadNumber()
317 GetXFRangeBuffer().SetXF( aScPos, nXFIdx ); in ReadNumber()
318 GetDoc().PutCell( aScPos, new ScValueCell( fValue ) ); in ReadNumber()
327 ScAddress aScPos( ScAddress::UNINITIALIZED ); in ReadLabel() local
328 if( GetAddressConverter().ConvertAddress( aScPos, aXclPos, GetCurrScTab(), true ) ) in ReadLabel()
336 sal_uInt16 nXFIdx = ReadXFIndex( aScPos, bBiff2 ); in ReadLabel()
347 GetXFRangeBuffer().SetXF( aScPos, nXFIdx ); in ReadLabel()
349 GetDoc().PutCell( aScPos, pCell ); in ReadLabel()
358 ScAddress aScPos( ScAddress::UNINITIALIZED ); in ReadBoolErr() local
359 if( GetAddressConverter().ConvertAddress( aScPos, aXclPos, GetCurrScTab(), true ) ) in ReadBoolErr()
361 sal_uInt16 nXFIdx = ReadXFIndex( aScPos, maStrm.GetRecId() == EXC_ID2_BOOLERR ); in ReadBoolErr()
366 GetXFRangeBuffer().SetBoolXF( aScPos, nXFIdx ); in ReadBoolErr()
368 GetXFRangeBuffer().SetXF( aScPos, nXFIdx ); in ReadBoolErr()
372 ScFormulaCell* pCell = new ScFormulaCell( pD, aScPos, pScTokArr ); in ReadBoolErr()
374 GetDoc().PutCell( aScPos, pCell ); in ReadBoolErr()
383 ScAddress aScPos( ScAddress::UNINITIALIZED ); in ReadRk() local
384 if( GetAddressConverter().ConvertAddress( aScPos, aXclPos, GetCurrScTab(), true ) ) in ReadRk()
386 sal_uInt16 nXFIdx = ReadXFIndex( aScPos, false ); in ReadRk()
390 GetXFRangeBuffer().SetXF( aScPos, nXFIdx ); in ReadRk()
391 GetDoc().PutCell( aScPos, new ScValueCell( XclTools::GetDoubleFromRK( nRk ) ) ); in ReadRk()
862 ScAddress aScPos( ScAddress::UNINITIALIZED ); in Mulrk() local
863 if( GetAddressConverter().ConvertAddress( aScPos, aCurrXclPos, GetCurrScTab(), true ) ) in Mulrk()
865 GetXFRangeBuffer().SetXF( aScPos, nXF ); in Mulrk()
866 GetDoc().PutCell( aScPos, new ScValueCell( XclTools::GetDoubleFromRK( nRkNum ) ) ); in Mulrk()
883 ScAddress aScPos( ScAddress::UNINITIALIZED ); in Mulblank() local
884 if( GetAddressConverter().ConvertAddress( aScPos, aCurrXclPos, GetCurrScTab(), true ) ) in Mulblank()
885 GetXFRangeBuffer().SetBlankXF( aScPos, nXF ); in Mulblank()
896 ScAddress aScPos( ScAddress::UNINITIALIZED ); in Rstring() local
897 if( GetAddressConverter().ConvertAddress( aScPos, aXclPos, GetCurrScTab(), true ) ) in Rstring()
913 GetXFRangeBuffer().SetXF( aScPos, nXFIdx ); in Rstring()
915 GetDoc().PutCell( aScPos, pCell ); in Rstring()