Lines Matching refs:rName

98 …const OutputRef& rxOut, const BinaryInputStreamRef& rxStrm, const String& rName, sal_uInt16 nSubSc…  in lclDumpDffClientPos()  argument
104 ItemGuard aItem( rxOut, rName ); in lclDumpDffClientPos()
401 void BiffObjectBase::writeBooleanItem( const String& rName, sal_uInt8 nBool ) in writeBooleanItem() argument
403 writeDecItem( rName, nBool, "BOOLEAN" ); in writeBooleanItem()
406 void BiffObjectBase::writeErrorCodeItem( const String& rName, sal_uInt8 nErrCode ) in writeErrorCodeItem() argument
408 writeHexItem( rName, nErrCode, mxErrCodes ); in writeErrorCodeItem()
428 OUString BiffObjectBase::dumpByteString( const String& rName, BiffStringFlags nFlags, rtl_TextEncod… in dumpByteString() argument
469 writeStringItem( rName( "text" ), aUniStr ); in dumpByteString()
473 OUString BiffObjectBase::dumpUniString( const String& rName, BiffStringFlags nFlags ) in dumpUniString() argument
491 writeStringItem( rName( "text" ), aString ); in dumpUniString()
531 OUString BiffObjectBase::dumpString( const String& rName, BiffStringFlags nByteFlags, BiffStringFla… in dumpString() argument
533 …return (getBiff() == BIFF8) ? dumpUniString( rName, nUniFlags ) : dumpByteString( rName, nByteFlag… in dumpString()
536 OUString BiffObjectBase::dumpSegmentedUniString( const String& rName ) in dumpSegmentedUniString() argument
543 writeStringItem( rName, aString ); in dumpSegmentedUniString()
547 void BiffObjectBase::dumpSegmentedUniStringArray( const String& rName ) in dumpSegmentedUniStringArray() argument
549 writeEmptyItem( rName ); in dumpSegmentedUniStringArray()
556 sal_uInt8 BiffObjectBase::dumpBoolean( const String& rName ) in dumpBoolean() argument
560 writeBooleanItem( rName( "boolean" ), nBool ); in dumpBoolean()
564 sal_uInt8 BiffObjectBase::dumpErrorCode( const String& rName ) in dumpErrorCode() argument
568 writeErrorCodeItem( rName( "error-code" ), nErrCode ); in dumpErrorCode()
572 rtl_TextEncoding BiffObjectBase::dumpCodePage( const String& rName ) in dumpCodePage() argument
574 sal_uInt16 nCodePage = dumpDec< sal_uInt16 >( rName( "codepage" ), "CODEPAGES" ); in dumpCodePage()
578 void BiffObjectBase::dumpFormulaResult( const String& rName ) in dumpFormulaResult() argument
583 writeArrayItem( rName( "result" ), pnResult, 8 ); in dumpFormulaResult()
603 sal_Int32 BiffObjectBase::dumpColIndex( const String& rName, bool bCol16Bit ) in dumpColIndex() argument
606 writeColIndexItem( rName( "col-idx" ), nCol ); in dumpColIndex()
610 sal_Int32 BiffObjectBase::dumpRowIndex( const String& rName, bool bRow32Bit ) in dumpRowIndex() argument
613 writeRowIndexItem( rName( "row-idx" ), nRow ); in dumpRowIndex()
617 sal_Int32 BiffObjectBase::dumpColRange( const String& rName, bool bCol16Bit ) in dumpColRange() argument
621 writeColRangeItem( rName( "col-range" ), nCol1, nCol2 ); in dumpColRange()
625 sal_Int32 BiffObjectBase::dumpRowRange( const String& rName, bool bRow32Bit ) in dumpRowRange() argument
629 writeRowRangeItem( rName( "row-range" ), nRow1, nRow2 ); in dumpRowRange()
633 Address BiffObjectBase::dumpAddress( const String& rName, bool bCol16Bit, bool bRow32Bit ) in dumpAddress() argument
637 writeAddressItem( rName( "addr" ), aPos ); in dumpAddress()
641 Range BiffObjectBase::dumpRange( const String& rName, bool bCol16Bit, bool bRow32Bit ) in dumpRange() argument
645 writeRangeItem( rName( "range" ), aRange ); in dumpRange()
649 void BiffObjectBase::dumpRangeList( const String& rName, bool bCol16Bit, bool bRow32Bit ) in dumpRangeList() argument
653 writeRangeListItem( rName( "range-list" ), aRanges ); in dumpRangeList()
772 sal_uInt16 FormulaObject::dumpFormulaSize( const String& rName ) in dumpFormulaSize() argument
775 writeDecItem( rName( "formula-size" ), nSize ); in dumpFormulaSize()
779 void FormulaObject::dumpCellFormula( const String& rName, sal_uInt16 nSize ) in dumpCellFormula() argument
781 dumpFormula( rName, nSize, false ); in dumpCellFormula()
784 void FormulaObject::dumpCellFormula( const String& rName ) in dumpCellFormula() argument
786 dumpFormula( rName, false ); in dumpCellFormula()
789 void FormulaObject::dumpNameFormula( const String& rName, sal_uInt16 nSize ) in dumpNameFormula() argument
791 dumpFormula( rName, nSize, true ); in dumpNameFormula()
794 void FormulaObject::dumpNameFormula( const String& rName ) in dumpNameFormula() argument
796 dumpFormula( rName, true ); in dumpNameFormula()
911 void FormulaObject::dumpFormula( const String& rName, sal_uInt16 nSize, bool bNameMode ) in dumpFormula() argument
913 maName = rName( "formula" ); in dumpFormula()
920 void FormulaObject::dumpFormula( const String& rName, bool bNameMode ) in dumpFormula() argument
922 dumpFormula( rName, readFormulaSize(), bNameMode ); in dumpFormula()
1049 sal_uInt16 FormulaObject::dumpTokenCol( const String& rName, bool& rbRelC, bool& rbRelR ) in dumpTokenCol() argument
1054 nCol = dumpHex< sal_uInt16 >( rName, mxRelFlags ); in dumpTokenCol()
1060 nCol = dumpDec< sal_uInt8 >( rName ); in dumpTokenCol()
1064 sal_uInt16 FormulaObject::dumpTokenRow( const String& rName, bool& rbRelC, bool& rbRelR ) in dumpTokenRow() argument
1068 nRow = dumpDec< sal_uInt16 >( rName ); in dumpTokenRow()
1071 nRow = dumpHex< sal_uInt16 >( rName, mxRelFlags ); in dumpTokenRow()
1270 void FormulaObject::dumpExpToken( const String& rName ) in dumpExpToken() argument
1276 OUStringBuffer aOp( rName ); in dumpExpToken()
3211 OUString WorkbookStreamObject::createFontName( const OUString& rName, sal_uInt16 nHeight, bool bBol… in createFontName() argument
3213 OUStringBuffer aName( rName ); in createFontName()
3223 sal_uInt16 WorkbookStreamObject::dumpPatternIdx( const String& rName, bool b16Bit ) in dumpPatternIdx() argument
3225 return dumpDec< sal_uInt16, sal_uInt8 >( b16Bit, rName( "fill-pattern" ), mxFillPatterns ); in dumpPatternIdx()
3228 sal_uInt16 WorkbookStreamObject::dumpColorIdx( const String& rName, bool b16Bit ) in dumpColorIdx() argument
3230 return dumpDec< sal_uInt16, sal_uInt8 >( b16Bit, rName( "color-idx" ), mxColors ); in dumpColorIdx()
3233 sal_uInt16 WorkbookStreamObject::dumpFontIdx( const String& rName, bool b16Bit ) in dumpFontIdx() argument
3235 return dumpDec< sal_uInt16, sal_uInt8 >( b16Bit, rName( "font-idx" ), mxFontNames ); in dumpFontIdx()
3238 sal_uInt16 WorkbookStreamObject::dumpFormatIdx( const String& rName ) in dumpFormatIdx() argument
3240 return dumpDec< sal_uInt16, sal_uInt8 >( getBiff() >= BIFF5, rName( "fmt-idx" ), mxFormats ); in dumpFormatIdx()
3243 sal_uInt16 WorkbookStreamObject::dumpXfIdx( const String& rName, bool bBiff2Style ) in dumpXfIdx() argument
3245 String aName = rName( "xf-idx" ); in dumpXfIdx()
3271 void WorkbookStreamObject::dumpExtColor( const String& rName ) in dumpExtColor() argument
3274 writeEmptyItem( rName( "color" ) ); in dumpExtColor()
3288 void WorkbookStreamObject::dumpExtCfColor( const String& rName ) in dumpExtCfColor() argument
3291 writeEmptyItem( rName( "color" ) ); in dumpExtCfColor()
3306 sal_uInt8 WorkbookStreamObject::dumpFilterColumnOperator( const String& rName ) in dumpFilterColumnOperator() argument
3309 writeEmptyItem( rName ); in dumpFilterColumnOperator()
3338 OUString WorkbookStreamObject::dumpPivotString( const String& rName, sal_uInt16 nStrLen ) in dumpPivotString() argument
3346 writeStringItem( rName, aString ); in dumpPivotString()
3351 OUString WorkbookStreamObject::dumpPivotString( const String& rName ) in dumpPivotString() argument
3354 return dumpPivotString( rName, nStrLen ); in dumpPivotString()
4332 void WorkbookStreamObject::dumpObjRecString( const String& rName, sal_uInt16 nTextLen, bool bRepeat… in dumpObjRecString() argument
4337 dumpByteString( rName, BIFF_STR_8BITLENGTH ); in dumpObjRecString()
4339 …writeStringItem( rName, getBiffStream().readCharArrayUC( nTextLen, getBiffData().getTextEncoding()… in dumpObjRecString()
4359 void WorkbookStreamObject::dumpObjRecFmla( const String& rName, sal_uInt16 nFmlaSize ) in dumpObjRecFmla() argument
4364 writeEmptyItem( rName ); in dumpObjRecFmla()