Lines Matching refs:nRow

169 rtl::OUString SAL_CALL ScAccessiblePreviewTable::getAccessibleRowDescription( sal_Int32 nRow )  in getAccessibleRowDescription()  argument
199 if ( nRow < 0 || (mpTableInfo && nRow >= mpTableInfo->GetRows()) ) in getAccessibleRowDescription()
241 sal_Int32 SAL_CALL ScAccessiblePreviewTable::getAccessibleRowExtentAt( sal_Int32 nRow, sal_Int32 nC… in getAccessibleRowExtentAt() argument
250 if ( mpViewShell && mpTableInfo && nColumn >= 0 && nRow >= 0 && in getAccessibleRowExtentAt()
251 nColumn < mpTableInfo->GetCols() && nRow < mpTableInfo->GetRows() ) in getAccessibleRowExtentAt()
254 const ScPreviewColRowInfo& rRowInfo = mpTableInfo->GetRowInfo()[nRow]; in getAccessibleRowExtentAt()
275 sal_Int32 SAL_CALL ScAccessiblePreviewTable::getAccessibleColumnExtentAt( sal_Int32 nRow, sal_Int32… in getAccessibleColumnExtentAt() argument
284 if ( mpViewShell && mpTableInfo && nColumn >= 0 && nRow >= 0 && in getAccessibleColumnExtentAt()
285 nColumn < mpTableInfo->GetCols() && nRow < mpTableInfo->GetRows() ) in getAccessibleColumnExtentAt()
288 const ScPreviewColRowInfo& rRowInfo = mpTableInfo->GetRowInfo()[nRow]; in getAccessibleColumnExtentAt()
333 sal_Bool SAL_CALL ScAccessiblePreviewTable::isAccessibleRowSelected( sal_Int32 nRow ) in isAccessibleRowSelected() argument
340 if ( nRow < 0 || (mpTableInfo && nRow >= mpTableInfo->GetRows()) ) in isAccessibleRowSelected()
359 …sible > SAL_CALL ScAccessiblePreviewTable::getAccessibleCellAt( sal_Int32 nRow, sal_Int32 nColumn ) in getAccessibleCellAt() argument
368 …if ( mpTableInfo && nColumn >= 0 && nRow >= 0 && nColumn < mpTableInfo->GetCols() && nRow < mpTabl… in getAccessibleCellAt()
371 long nNewIndex = nRow * mpTableInfo->GetCols() + nColumn; in getAccessibleCellAt()
374 const ScPreviewColRowInfo& rRowInfo = mpTableInfo->GetRowInfo()[nRow]; in getAccessibleCellAt()
410 sal_Bool SAL_CALL ScAccessiblePreviewTable::isAccessibleSelected( sal_Int32 nRow, sal_Int32 nColumn… in isAccessibleSelected() argument
419 …if ( mpTableInfo && nColumn >= 0 && nRow >= 0 && nColumn < mpTableInfo->GetCols() && nRow < mpTabl… in isAccessibleSelected()
429 sal_Int32 SAL_CALL ScAccessiblePreviewTable::getAccessibleIndex( sal_Int32 nRow, sal_Int32 nColumn ) in getAccessibleIndex() argument
438 …if ( mpTableInfo && nColumn >= 0 && nRow >= 0 && nColumn < mpTableInfo->GetCols() && nRow < mpTabl… in getAccessibleIndex()
441 nRet = nRow * mpTableInfo->GetCols() + nColumn; in getAccessibleIndex()
457 sal_Int32 nRow = 0; in getAccessibleRow() local
460 nRow = nChildIndex / mpTableInfo->GetCols(); in getAccessibleRow()
465 return nRow; in getAccessibleRow()
581 long nRow = nIndex / nColumns; in getAccessibleChild() local
583 xRet = getAccessibleCellAt( nRow, nCol ); in getAccessibleChild()