Lines Matching refs:aPos

92 			CellPos aPos( rPos );  in getCellSize()  local
96 while( nRowSpan && (aPos.mnRow < nRowCount) ) in getCellSize()
98 if( ((sal_Int32)maRows.size()) <= aPos.mnRow ) in getCellSize()
101 height += maRows[aPos.mnRow++].mnSize; in getCellSize()
107 while( nColSpan && (aPos.mnCol < nColCount ) ) in getCellSize()
109 if( ((sal_Int32)maColumns.size()) <= aPos.mnCol ) in getCellSize()
112 width += maColumns[aPos.mnCol++].mnSize; in getCellSize()
878 CellPos aPos; in updateCells() local
879 for( aPos.mnRow = 0; aPos.mnRow < nRowCount; aPos.mnRow++ ) in updateCells()
881 for( aPos.mnCol = 0; aPos.mnCol < nColCount; aPos.mnCol++ ) in updateCells()
883 CellRef xCell( getCell( aPos ) ); in updateCells()
887 getCellArea( aPos, aCellArea ); in updateCells()
1043 CellPos aPos; in UpdateBorderLayout() local
1044 for( aPos.mnRow = 0; aPos.mnRow < nRowCount; aPos.mnRow++ ) in UpdateBorderLayout()
1046 for( aPos.mnCol = 0; aPos.mnCol < nColCount; aPos.mnCol++ ) in UpdateBorderLayout()
1048 CellRef xCell( getCell( aPos ) ); in UpdateBorderLayout()
1058 const sal_Int32 nLastRow = xCell->getRowSpan() + aPos.mnRow; in UpdateBorderLayout()
1059 const sal_Int32 nLastCol = xCell->getColumnSpan() + aPos.mnCol; in UpdateBorderLayout()
1061 for( sal_Int32 nRow = aPos.mnRow; nRow < nLastRow; nRow++ ) in UpdateBorderLayout()
1063 SetBorder( aPos.mnCol, nRow, false, pThisAttr->GetLeft() ); in UpdateBorderLayout()
1067 for( sal_Int32 nCol = aPos.mnCol; nCol < nLastCol; nCol++ ) in UpdateBorderLayout()
1069 SetBorder( nCol, aPos.mnRow, true, pThisAttr->GetTop() ); in UpdateBorderLayout()