Searched refs:nRemainingCount (Results 1 – 1 of 1) sorted by relevance
376 sal_Int32 nRemainingCount = m_nColumnCount * (m_nRowCount - nIndex); in insertRow() local377 aNewData[ ::std::slice( (nIndex + 1) * m_nColumnCount, nRemainingCount, 1 ) ] = in insertRow()379 m_aData[ ::std::slice( nIndex * m_nColumnCount, nRemainingCount, 1 ) ] ); in insertRow()452 sal_Int32 nRemainingCount = m_nColumnCount * (nNewRowCount - nIndex); in deleteRow() local453 aNewData[ ::std::slice( nIndex * m_nColumnCount, nRemainingCount, 1 ) ] = in deleteRow()455 m_aData[ ::std::slice( (nIndex + 1) * m_nColumnCount, nRemainingCount, 1 ) ] ); in deleteRow()
Completed in 13 milliseconds