Lines Matching refs:nColIndexPos
338 nColIndexPos( 0 ), in ScDPRunningTotalState()
359 DBG_ASSERT( nColIndexPos < SC_DAPI_MAXFIELDS, "too many column indexes" ); in AddColIndex()
360 if ( nColIndexPos < SC_DAPI_MAXFIELDS ) in AddColIndex()
362 pColVisible[nColIndexPos] = nVisible; in AddColIndex()
363 pColIndexes[nColIndexPos] = nSorted; in AddColIndex()
364 pColVisible[nColIndexPos+1] = -1; in AddColIndex()
365 pColIndexes[nColIndexPos+1] = -1; in AddColIndex()
366 ++nColIndexPos; in AddColIndex()
385 DBG_ASSERT( nColIndexPos > 0, "RemoveColIndex without index" ); in RemoveColIndex()
386 if ( nColIndexPos > 0 ) in RemoveColIndex()
388 --nColIndexPos; in RemoveColIndex()
389 pColVisible[nColIndexPos] = -1; in RemoveColIndex()
390 pColIndexes[nColIndexPos] = -1; in RemoveColIndex()