Lines Matching refs:GetCell
140 const Cell& ArrayImpl::GetCell( size_t nCol, size_t nRow ) const in GetCell() function in svx::frame::ArrayImpl
154 while( (nFirstCol > 0) && GetCell( nFirstCol, nRow ).mbOverlapX ) --nFirstCol; in GetMergedFirstCol()
161 while( (nFirstRow > 0) && GetCell( nCol, nFirstRow ).mbOverlapY ) --nFirstRow; in GetMergedFirstRow()
168 while( (nLastCol < mnWidth) && GetCell( nLastCol, nRow ).mbOverlapX ) ++nLastCol; in GetMergedLastCol()
175 while( (nLastRow < mnHeight) && GetCell( nCol, nLastRow ).mbOverlapY ) ++nLastRow; in GetMergedLastRow()
181 return GetCell( GetMergedFirstCol( nCol, nRow ), GetMergedFirstRow( nCol, nRow ) ); in GetMergedOriginCell()
191 const Cell& rCell = GetCell( nCol, nRow ); in IsMergedOverlappedLeft()
197 return GetCell( nCol + 1, nRow ).mbOverlapX || (GetCell( nCol, nRow ).mnAddRight > 0); in IsMergedOverlappedRight()
202 const Cell& rCell = GetCell( nCol, nRow ); in IsMergedOverlappedTop()
208 return GetCell( nCol, nRow + 1 ).mbOverlapY || (GetCell( nCol, nRow ).mnAddBottom > 0); in IsMergedOverlappedBottom()
261 if( bSimple || !GetCell( nCol, nRow ).IsMerged() ) in GetHorDiagAngle()
270 const Cell& rCell = GetCell( nFirstCol, nFirstRow ); in GetHorDiagAngle()
341 #define CELL( col, row ) mxImpl->GetCell( col, row )