Lines Matching refs:ArrayImpl

121 ArrayImpl::ArrayImpl( size_t nWidth, size_t nHeight, bool bDiagDblClip ) :  in ArrayImpl()  function in svx::frame::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()
158 size_t ArrayImpl::GetMergedFirstRow( size_t nCol, size_t nRow ) const in GetMergedFirstRow()
165 size_t ArrayImpl::GetMergedLastCol( size_t nCol, size_t nRow ) const in GetMergedLastCol()
172 size_t ArrayImpl::GetMergedLastRow( size_t nCol, size_t nRow ) const 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()
279 double ArrayImpl::GetVerDiagAngle( size_t nCol, size_t nRow, bool bSimple ) const in GetVerDiagAngle()
367 mxImpl.reset( new ArrayImpl( nWidth, nHeight, bDiagDblClip ) ); in Initialize()