Lines Matching refs:m_nTotalCount

675 				if (pParent->m_nTotalCount >= 0)  in SetState()
678 m_aAbsolute.SetMax(pParent->m_nTotalCount + 1); in SetState()
680 m_aAbsolute.SetMax(pParent->m_nTotalCount); in SetState()
937 ,m_nTotalCount(-1) in DbGridControl()
1151 m_nTotalCount = -1; in RemoveRows()
1175 m_nCurrentPos = m_nSeekPos = m_nTotalCount = -1; in RemoveRows()
1907 || (bCacheAligned && m_nTotalCount < 0)) ) in RecalcRows()
1925 if (m_bRecordCountFinal && m_nTotalCount < 0) in RowInserted()
1929 m_nTotalCount = GetRowCount() + nNumRows; in RowInserted()
1931 --m_nTotalCount; in RowInserted()
1933 else if (m_nTotalCount >= 0) in RowInserted()
1934 m_nTotalCount += nNumRows; in RowInserted()
1946 if (m_bRecordCountFinal && m_nTotalCount < 0) in RowRemoved()
1948 m_nTotalCount = GetRowCount() - nNumRows; in RowRemoved()
1951 --m_nTotalCount; in RowRemoved()
1953 else if (m_nTotalCount >= 0) in RowRemoved()
1954 m_nTotalCount -= nNumRows; in RowRemoved()
2017 if (m_bRecordCountFinal && m_nTotalCount < 0) in AdjustRows()
2020 m_nTotalCount = GetRowCount() - 1; in AdjustRows()
2022 m_nTotalCount = GetRowCount(); in AdjustRows()
2543 if (m_nTotalCount < 0) // RecordCount steht noch nicht fest in MoveToLast()
2584 if (m_nTotalCount > 0) in MoveToNext()
2615 if (m_nTotalCount > 0) // only to avoid infinte recursion in MoveToNext()
2627 if (m_nTotalCount < 0 && (long)nPos >= GetRowCount()) in MoveToPosition()
2658 if (m_nTotalCount < 0) // RecordCount steht noch nicht fest in AppendNew()
2676 long nNewRow = m_nTotalCount + 1; in AppendNew()
3291 return (m_nOptions & OPT_INSERT) && m_nTotalCount >= 0 && (nRow == GetRowCount() - 1); in IsInsertionRow()