Lines Matching refs:nRow
209 for (SCROW nRow = 0; nRow < nRowCount; ++nRow ) in fillTable() local
211 SCROW nIndex = GetCache()->GetItemDataId( nCol, nRow, bRepeatIfEmpty ); in fillTable()
218 !GetCache()->ValidQuery( nRow , rQuery, pSpecial ) ) in fillTable()
220 if ( bIgnoreEmptyRows && GetCache()->IsRowEmpty( nRow ) ) in fillTable()
229 for ( SCROW nRow = 0; nRow < nMemCount; nRow++ ) in fillTable() local
231 if ( pAdded[nRow] != -1 ) in fillTable()
232 maFieldEntries.back().push_back( pAdded[nRow] ); in fillTable()
264 for (SCROW nRow = 0; nRow < nRowCount; ++nRow ) in fillTable() local
266 SCROW nIndex = GetCache()->GetItemDataId( nCol, nRow, false ); in fillTable()
276 for ( SCROW nRow = 0; nRow < nMemCount; nRow++ ) in fillTable() local
278 if ( pAdded[nRow] != -1 ) in fillTable()
279 maFieldEntries.back().push_back( pAdded[nRow] ); in fillTable()
286 bool ScDPCacheTable::isRowActive(sal_Int32 nRow) const in isRowActive()
288 if (nRow < 0 || static_cast<size_t>(nRow) >= maRowsVisible.size()) in isRowActive()
292 return maRowsVisible[nRow]; in isRowActive()
308 for (sal_Int32 nRow = 0; nRow < nRowSize; ++nRow) in filterByPageDimension() local
309 … maRowsVisible[nRow] = maRowsVisible[nRow] && isRowQualified(nRow, rCriteria, rRepeatIfEmptyDims); in filterByPageDimension()
312 const ScDPItemData* ScDPCacheTable::getCell(SCCOL nCol, SCROW nRow, bool bRepeatIfEmpty) const in getCell() argument
314 SCROW nId= GetCache()->GetItemDataId(nCol, nRow, bRepeatIfEmpty); in getCell()
318 void ScDPCacheTable::getValue( ScDPValueData& rVal, SCCOL nCol, SCROW nRow, bool bRepeatIfEmpty) c… in getValue() argument
320 const ScDPItemData* pData = getCell( nCol, nRow, bRepeatIfEmpty ); in getValue()
378 for (sal_Int32 nRow = 0; nRow < nRowSize; ++nRow) in filterTable() local
380 if (!maRowsVisible[nRow]) in filterTable()
384 if (!isRowQualified(nRow, rCriteria, rRepeatIfEmptyDims)) in filterTable()
395 const ScDPItemData* pData= getCell(nCol, nRow, bRepeatIfEmpty); in filterTable()
432 bool ScDPCacheTable::isRowQualified(sal_Int32 nRow, const vector<Criterion>& rCriteria, in isRowQualified() argument
446 …const ScDPItemData* pCellData = getCell(static_cast<SCCOL>(itr->mnFieldIndex), nRow, bRepeatIfEmpt… in isRowQualified()