Lines Matching refs:maMaxPos
554 bool bValid = (0 <= nCol) && (nCol <= maMaxPos.Column); in checkCol()
562 bool bValid = (0 <= nRow) && (nRow <= maMaxPos.Row); in checkRow()
570 bool bValid = (0 <= nSheet) && (nSheet <= maMaxPos.Sheet); in checkTab()
572 mbTabOverflow |= (nSheet > maMaxPos.Sheet); // do not warn for deleted refs (-1) in checkTab()
607 aAddress.Sheet = getLimitedValue< sal_Int16, sal_Int16 >( nSheet, 0, maMaxPos.Sheet ); in createValidCellAddress()
608 aAddress.Column = ::std::min( aAddress.Column, maMaxPos.Column ); in createValidCellAddress()
609 aAddress.Row = ::std::min( aAddress.Row, maMaxPos.Row ); in createValidCellAddress()
635 aAddress.Sheet = getLimitedValue< sal_Int16, sal_Int16 >( nSheet, 0, maMaxPos.Sheet ); in createValidCellAddress()
636 …aAddress.Column = getLimitedValue< sal_Int32, sal_Int32 >( rBinAddress.mnCol, 0, maMaxPos.Column ); in createValidCellAddress()
637 … aAddress.Row = getLimitedValue< sal_Int32, sal_Int32 >( rBinAddress.mnRow, 0, maMaxPos.Row ); in createValidCellAddress()
662 if( orRange.EndColumn > maMaxPos.Column ) in validateCellRange()
663 orRange.EndColumn = maMaxPos.Column; in validateCellRange()
664 if( orRange.EndRow > maMaxPos.Row ) in validateCellRange()
665 orRange.EndRow = maMaxPos.Row; in validateCellRange()
768 maMaxPos = getBaseFilter().isImportFilter() ? maMaxApiPos : maMaxXlsPos; in initializeMaxPos()