Lines Matching refs:nRow

99     sal_uInt16 nRow = static_cast<sal_uInt16>(nEndRow);  in Dimensions()  local
101 DBG_ASSERT( nRow <= WK1MAXROW, "ExportWK1::Dimensions(): Row > WK1MAXROW" ); in Dimensions()
102 aOut << nCol << nRow; // Ending Col/Row in Dimensions()
138 void ExportWK1::Blank( const sal_uInt16 nCol, const sal_uInt16 nRow, const ScPatternAttr& aAttr ) in Blank() argument
142 DBG_ASSERT( nRow <= WK1MAXROW, "ExportWK1::Blank(): Row > WK1MAXROW" ); in Blank()
144 aOut << ( sal_uInt16 ) 0x0C << ( sal_uInt16 ) 5 << GenFormByte( aAttr ) << nCol << nRow; in Blank()
148 void ExportWK1::Number( const sal_uInt16 nCol, const sal_uInt16 nRow, const double fWert, const ScP… in Number() argument
152 DBG_ASSERT( nRow <= WK1MAXROW, "ExportWK1::Number(): Row > WK1MAXROW" ); in Number()
154 aOut << ( sal_uInt16 ) 0x0E << ( sal_uInt16 ) 13 << GenFormByte( aAttr ) << nCol << nRow << fWert; in Number()
158 void ExportWK1::Label( const sal_uInt16 nCol, const sal_uInt16 nRow, const String& rStr, const ScPa… in Label() argument
162 DBG_ASSERT( nRow <= WK1MAXROW, "ExportWK1::Label(): Row > WK1MAXROW" ); in Label()
176 …aOut << ( sal_uInt16 ) 0x0F << nLaenge << GenFormByte( aAttr ) << nCol << nRow << ( sal_Char ) '\'… in Label()
185 void ExportWK1::Formula( const sal_uInt16 nCol, const sal_uInt16 nRow, const ScFormulaCell* pFC, co… in Formula() argument
189 DBG_ASSERT( nRow <= WK1MAXROW, "ExportWK1::Formula(): Row > WK1MAXROW" ); in Formula()
200 << GenFormByte( aAttr ) << nCol << nRow in Formula()
353 sal_uInt16 nCol, nRow; in Write() local
369 nRow = static_cast<sal_uInt16>(nScRow); in Write()
377 Number( nCol, nRow, fVal, *pPatAttr ); in Write()
384 Label( nCol, nRow, aStr, *pPatAttr ); in Write()
389 Formula( nCol, nRow, ( ScFormulaCell * ) pCell, *pPatAttr ); in Write()
390 WKString( nCol, nRow, ( ScFormulaCell * ) pCell, *pPatAttr ); in Write()