Lines Matching refs:size_t

97 …id lclSetMergedRange( CellVec& rCells, size_t nWidth, size_t nFirstCol, size_t nFirstRow, size_t n…  in lclSetMergedRange()
99 for( size_t nCol = nFirstCol; nCol <= nLastCol; ++nCol ) in lclSetMergedRange()
101 for( size_t nRow = nFirstRow; nRow <= nLastRow; ++nRow ) in lclSetMergedRange()
121 ArrayImpl::ArrayImpl( size_t nWidth, size_t nHeight, bool bDiagDblClip ) : in ArrayImpl()
140 const Cell& ArrayImpl::GetCell( size_t nCol, size_t nRow ) const in GetCell()
145 Cell& ArrayImpl::GetCellAcc( size_t nCol, size_t nRow ) in GetCellAcc()
151 size_t ArrayImpl::GetMergedFirstCol( size_t nCol, size_t nRow ) const in GetMergedFirstCol()
153 size_t nFirstCol = nCol; in GetMergedFirstCol()
158 size_t ArrayImpl::GetMergedFirstRow( size_t nCol, size_t nRow ) const in GetMergedFirstRow()
160 size_t nFirstRow = nRow; in GetMergedFirstRow()
165 size_t ArrayImpl::GetMergedLastCol( size_t nCol, size_t nRow ) const in GetMergedLastCol()
167 size_t nLastCol = nCol + 1; in GetMergedLastCol()
172 size_t ArrayImpl::GetMergedLastRow( size_t nCol, size_t nRow ) const in GetMergedLastRow()
174 size_t nLastRow = nRow + 1; in GetMergedLastRow()
179 const Cell& ArrayImpl::GetMergedOriginCell( size_t nCol, size_t nRow ) const in GetMergedOriginCell()
184 Cell& ArrayImpl::GetMergedOriginCellAcc( size_t nCol, size_t nRow ) in GetMergedOriginCellAcc()
189 bool ArrayImpl::IsMergedOverlappedLeft( size_t nCol, size_t nRow ) const in IsMergedOverlappedLeft()
195 bool ArrayImpl::IsMergedOverlappedRight( size_t nCol, size_t nRow ) const in IsMergedOverlappedRight()
200 bool ArrayImpl::IsMergedOverlappedTop( size_t nCol, size_t nRow ) const in IsMergedOverlappedTop()
206 bool ArrayImpl::IsMergedOverlappedBottom( size_t nCol, size_t nRow ) const in IsMergedOverlappedBottom()
211 bool ArrayImpl::IsColInClipRange( size_t nCol ) const in IsColInClipRange()
216 bool ArrayImpl::IsRowInClipRange( size_t nRow ) const in IsRowInClipRange()
221 bool ArrayImpl::IsInClipRange( size_t nCol, size_t nRow ) const in IsInClipRange()
226 long ArrayImpl::GetColPosition( size_t nCol ) const in GetColPosition()
236 long ArrayImpl::GetRowPosition( size_t nRow ) const in GetRowPosition()
246 long ArrayImpl::GetColWidth( size_t nFirstCol, size_t nLastCol ) const in GetColWidth()
251 long ArrayImpl::GetRowHeight( size_t nFirstRow, size_t nLastRow ) const in GetRowHeight()
256 double ArrayImpl::GetHorDiagAngle( size_t nCol, size_t nRow, bool bSimple ) const in GetHorDiagAngle()
268 size_t nFirstCol = GetMergedFirstCol( nCol, nRow ); in GetHorDiagAngle()
269 size_t nFirstRow = GetMergedFirstRow( nCol, nRow ); in GetHorDiagAngle()
279 double ArrayImpl::GetVerDiagAngle( size_t nCol, size_t nRow, bool bSimple ) const in GetVerDiagAngle()
290 explicit MergedCellIterator( const Array& rArray, size_t nCol, size_t nRow );
293 inline size_t Col() const { return mnCol; } in Col()
294 inline size_t Row() const { return mnRow; } in Row()
299 size_t mnFirstCol;
300 size_t mnFirstRow;
301 size_t mnLastCol;
302 size_t mnLastRow;
303 size_t mnCol;
304 size_t mnRow;
309 MergedCellIterator::MergedCellIterator( const Array& rArray, size_t nCol, size_t nRow ) in MergedCellIterator()
353 Array::Array( size_t nWidth, size_t nHeight ) in Array()
364 void Array::Initialize( size_t nWidth, size_t nHeight ) in Initialize()
375 size_t Array::GetColCount() const in GetColCount()
380 size_t Array::GetRowCount() const in GetRowCount()
385 size_t Array::GetCellCount() const in GetCellCount()
390 size_t Array::GetColFromIndex( size_t nCellIndex ) const in GetColFromIndex()
396 size_t Array::GetRowFromIndex( size_t nCellIndex ) const in GetRowFromIndex()
402 size_t Array::GetCellIndex( size_t nCol, size_t nRow, bool bRTL ) const in GetCellIndex()
412 void Array::SetCellStyleLeft( size_t nCol, size_t nRow, const Style& rStyle ) in SetCellStyleLeft()
418 void Array::SetCellStyleRight( size_t nCol, size_t nRow, const Style& rStyle ) in SetCellStyleRight()
424 void Array::SetCellStyleTop( size_t nCol, size_t nRow, const Style& rStyle ) in SetCellStyleTop()
430 void Array::SetCellStyleBottom( size_t nCol, size_t nRow, const Style& rStyle ) in SetCellStyleBottom()
436 void Array::SetCellStyleTLBR( size_t nCol, size_t nRow, const Style& rStyle ) in SetCellStyleTLBR()
442 void Array::SetCellStyleBLTR( size_t nCol, size_t nRow, const Style& rStyle ) in SetCellStyleBLTR()
448 void Array::SetCellStyleDiag( size_t nCol, size_t nRow, const Style& rTLBR, const Style& rBLTR ) in SetCellStyleDiag()
456 void Array::SetColumnStyleLeft( size_t nCol, const Style& rStyle ) in SetColumnStyleLeft()
459 for( size_t nRow = 0; nRow < mxImpl->mnHeight; ++nRow ) in SetColumnStyleLeft()
463 void Array::SetColumnStyleRight( size_t nCol, const Style& rStyle ) in SetColumnStyleRight()
466 for( size_t nRow = 0; nRow < mxImpl->mnHeight; ++nRow ) in SetColumnStyleRight()
470 void Array::SetRowStyleTop( size_t nRow, const Style& rStyle ) in SetRowStyleTop()
473 for( size_t nCol = 0; nCol < mxImpl->mnWidth; ++nCol ) in SetRowStyleTop()
477 void Array::SetRowStyleBottom( size_t nRow, const Style& rStyle ) in SetRowStyleBottom()
480 for( size_t nCol = 0; nCol < mxImpl->mnWidth; ++nCol ) in SetRowStyleBottom()
484 const Style& Array::GetCellStyleLeft( size_t nCol, size_t nRow, bool bSimple ) const in GetCellStyleLeft()
505 const Style& Array::GetCellStyleRight( size_t nCol, size_t nRow, bool bSimple ) const in GetCellStyleRight()
526 const Style& Array::GetCellStyleTop( size_t nCol, size_t nRow, bool bSimple ) const in GetCellStyleTop()
547 const Style& Array::GetCellStyleBottom( size_t nCol, size_t nRow, bool bSimple ) const in GetCellStyleBottom()
568 const Style& Array::GetCellStyleTLBR( size_t nCol, size_t nRow, bool bSimple ) const in GetCellStyleTLBR()
574 const Style& Array::GetCellStyleBLTR( size_t nCol, size_t nRow, bool bSimple ) const in GetCellStyleBLTR()
580 const Style& Array::GetCellStyleTL( size_t nCol, size_t nRow ) const in GetCellStyleTL()
586 size_t nFirstCol = mxImpl->GetMergedFirstCol( nCol, nRow ); in GetCellStyleTL()
587 size_t nFirstRow = mxImpl->GetMergedFirstRow( nCol, nRow ); in GetCellStyleTL()
592 const Style& Array::GetCellStyleBR( size_t nCol, size_t nRow ) const in GetCellStyleBR()
598 size_t nLastCol = mxImpl->GetMergedLastCol( nCol, nRow ); in GetCellStyleBR()
599 size_t nLastRow = mxImpl->GetMergedLastRow( nCol, nRow ); in GetCellStyleBR()
604 const Style& Array::GetCellStyleBL( size_t nCol, size_t nRow ) const in GetCellStyleBL()
610 size_t nFirstCol = mxImpl->GetMergedFirstCol( nCol, nRow ); in GetCellStyleBL()
611 size_t nLastRow = mxImpl->GetMergedLastRow( nCol, nRow ); in GetCellStyleBL()
616 const Style& Array::GetCellStyleTR( size_t nCol, size_t nRow ) const in GetCellStyleTR()
622 size_t nFirstRow = mxImpl->GetMergedFirstRow( nCol, nRow ); in GetCellStyleTR()
623 size_t nLastCol = mxImpl->GetMergedLastCol( nCol, nRow ); in GetCellStyleTR()
630 void Array::SetMergedRange( size_t nFirstCol, size_t nFirstRow, size_t nLastCol, size_t nLastRow ) in SetMergedRange()
637 for( size_t nCurrCol = nFirstCol; !bFound && (nCurrCol <= nLastCol); ++nCurrCol ) in SetMergedRange()
638 for( size_t nCurrRow = nFirstRow; !bFound && (nCurrRow <= nLastRow); ++nCurrRow ) in SetMergedRange()
647 void Array::RemoveMergedRange( size_t nCol, size_t nRow ) in RemoveMergedRange()
658 void Array::SetAddMergedLeftSize( size_t nCol, size_t nRow, long nAddSize ) in SetAddMergedLeftSize()
666 void Array::SetAddMergedRightSize( size_t nCol, size_t nRow, long nAddSize ) in SetAddMergedRightSize()
674 void Array::SetAddMergedTopSize( size_t nCol, size_t nRow, long nAddSize ) in SetAddMergedTopSize()
682 void Array::SetAddMergedBottomSize( size_t nCol, size_t nRow, long nAddSize ) in SetAddMergedBottomSize()
690 bool Array::IsMerged( size_t nCol, size_t nRow ) const in IsMerged()
696 bool Array::IsMergedOrigin( size_t nCol, size_t nRow ) const in IsMergedOrigin()
702 bool Array::IsMergedOverlapped( size_t nCol, size_t nRow ) const in IsMergedOverlapped()
708 bool Array::IsMergedOverlappedLeft( size_t nCol, size_t nRow ) const in IsMergedOverlappedLeft()
714 bool Array::IsMergedOverlappedRight( size_t nCol, size_t nRow ) const in IsMergedOverlappedRight()
720 bool Array::IsMergedOverlappedTop( size_t nCol, size_t nRow ) const in IsMergedOverlappedTop()
726 bool Array::IsMergedOverlappedBottom( size_t nCol, size_t nRow ) const in IsMergedOverlappedBottom()
732 void Array::GetMergedOrigin( size_t& rnFirstCol, size_t& rnFirstRow, size_t nCol, size_t nRow ) con… in GetMergedOrigin()
739 void Array::GetMergedSize( size_t& rnWidth, size_t& rnHeight, size_t nCol, size_t nRow ) const in GetMergedSize()
741 size_t nFirstCol, nFirstRow, nLastCol, nLastRow; in GetMergedSize()
747 void Array::GetMergedRange( size_t& rnFirstCol, size_t& rnFirstRow, in GetMergedRange()
748 size_t& rnLastCol, size_t& rnLastRow, size_t nCol, size_t nRow ) const in GetMergedRange()
757 void Array::SetClipRange( size_t nFirstCol, size_t nFirstRow, size_t nLastCol, size_t nLastRow ) in SetClipRange()
773 bool Array::IsInClipRange( size_t nCol, size_t nRow ) const in IsInClipRange()
802 void Array::SetColWidth( size_t nCol, long nWidth ) in SetColWidth()
809 void Array::SetRowHeight( size_t nRow, long nHeight ) in SetRowHeight()
828 long Array::GetColPosition( size_t nCol ) const in GetColPosition()
834 long Array::GetRowPosition( size_t nRow ) const in GetRowPosition()
840 long Array::GetColWidth( size_t nCol ) const in GetColWidth()
846 long Array::GetColWidth( size_t nFirstCol, size_t nLastCol ) const in GetColWidth()
853 long Array::GetRowHeight( size_t nRow ) const in GetRowHeight()
859 long Array::GetRowHeight( size_t nFirstRow, size_t nLastRow ) const in GetRowHeight()
876 Point Array::GetCellPosition( size_t nCol, size_t nRow, bool bSimple ) const in GetCellPosition()
878 size_t nFirstCol = bSimple ? nCol : mxImpl->GetMergedFirstCol( nCol, nRow ); in GetCellPosition()
879 size_t nFirstRow = bSimple ? nRow : mxImpl->GetMergedFirstRow( nCol, nRow ); in GetCellPosition()
883 Size Array::GetCellSize( size_t nCol, size_t nRow, bool bSimple ) const in GetCellSize()
885 size_t nFirstCol = bSimple ? nCol : mxImpl->GetMergedFirstCol( nCol, nRow ); in GetCellSize()
886 size_t nFirstRow = bSimple ? nRow : mxImpl->GetMergedFirstRow( nCol, nRow ); in GetCellSize()
887 size_t nLastCol = bSimple ? nCol : mxImpl->GetMergedLastCol( nCol, nRow ); in GetCellSize()
888 size_t nLastRow = bSimple ? nRow : mxImpl->GetMergedLastRow( nCol, nRow ); in GetCellSize()
892 Rectangle Array::GetCellRect( size_t nCol, size_t nRow, bool bSimple ) const in GetCellRect()
910 double Array::GetHorDiagAngle( size_t nCol, size_t nRow, bool bSimple ) const in GetHorDiagAngle()
916 double Array::GetVerDiagAngle( size_t nCol, size_t nRow, bool bSimple ) const in GetVerDiagAngle()
939 size_t nCol, nRow; in MirrorSelfX()
954 size_t nLastCol = mxImpl->GetMergedLastCol( nCol, nRow ); in MirrorSelfX()
955 size_t nLastRow = mxImpl->GetMergedLastRow( nCol, nRow ); in MirrorSelfX()
973 size_t nCol, nRow; in MirrorSelfY()
988 size_t nLastCol = mxImpl->GetMergedLastCol( nCol, nRow ); in MirrorSelfY()
989 size_t nLastRow = mxImpl->GetMergedLastRow( nCol, nRow ); in MirrorSelfY()
1004 void Array::DrawCell( OutputDevice& rDev, size_t nCol, size_t nRow, const Color* pForceColor ) const in DrawCell()
1010 size_t nFirstCol, size_t nFirstRow, size_t nLastCol, size_t nLastRow, in DrawRange()
1016 size_t nCol, nRow; in DrawRange()
1038 size_t _nFirstCol = mxImpl->GetMergedFirstCol( nCol, nRow ); in DrawRange()
1039 size_t _nFirstRow = mxImpl->GetMergedFirstRow( nCol, nRow ); in DrawRange()
1040 size_t _nLastCol = mxImpl->GetMergedLastCol( nCol, nRow ); in DrawRange()
1041 size_t _nLastRow = mxImpl->GetMergedLastRow( nCol, nRow ); in DrawRange()