Lines Matching refs:nRowIndexPos
339 nRowIndexPos( 0 ) in ScDPRunningTotalState()
372 DBG_ASSERT( nRowIndexPos < SC_DAPI_MAXFIELDS, "too many row indexes" ); in AddRowIndex()
373 if ( nRowIndexPos < SC_DAPI_MAXFIELDS ) in AddRowIndex()
375 pRowVisible[nRowIndexPos] = nVisible; in AddRowIndex()
376 pRowIndexes[nRowIndexPos] = nSorted; in AddRowIndex()
377 pRowVisible[nRowIndexPos+1] = -1; in AddRowIndex()
378 pRowIndexes[nRowIndexPos+1] = -1; in AddRowIndex()
379 ++nRowIndexPos; in AddRowIndex()
396 DBG_ASSERT( nRowIndexPos > 0, "RemoveRowIndex without index" ); in RemoveRowIndex()
397 if ( nRowIndexPos > 0 ) in RemoveRowIndex()
399 --nRowIndexPos; in RemoveRowIndex()
400 pRowVisible[nRowIndexPos] = -1; in RemoveRowIndex()
401 pRowIndexes[nRowIndexPos] = -1; in RemoveRowIndex()