Lines Matching refs:pLow
4123 const SwFrm* pLow = _pCell->Lower(); in lcl_CalcMinCellHeight() local
4124 if ( pLow ) in lcl_CalcMinCellHeight()
4127 while ( pLow ) in lcl_CalcMinCellHeight()
4131 if ( pLow->IsRowFrm() ) in lcl_CalcMinCellHeight()
4134 nHeight += ::lcl_CalcMinRowHeight( static_cast<const SwRowFrm*>(pLow), in lcl_CalcMinCellHeight()
4140 long nLowHeight = (pLow->Frm().*fnRect->fnGetHeight)(); in lcl_CalcMinCellHeight()
4146 nFlyAdd = Max( nFlyAdd, ::CalcHeightWidthFlys( pLow ) ); in lcl_CalcMinCellHeight()
4151 pLow = pLow->GetNext(); in lcl_CalcMinCellHeight()
4190 const SwCellFrm* pLow = static_cast<const SwCellFrm*>(_pRow->Lower()); in lcl_CalcMinRowHeight() local
4191 while ( pLow ) in lcl_CalcMinRowHeight()
4194 const long nRowSpan = pLow->GetLayoutRowSpan(); in lcl_CalcMinRowHeight()
4202 nTmp = ::lcl_CalcMinCellHeight( pLow, _bConsiderObjs ); in lcl_CalcMinRowHeight()
4209 const SwCellFrm& rMaster = pLow->FindStartEndOfRowSpanCell( true, true ); in lcl_CalcMinRowHeight()
4221 if ( ( 0 != pLow->IsVertical() ) == ( 0 != bVert ) && nTmp > nHeight ) in lcl_CalcMinRowHeight()
4224 pLow = static_cast<const SwCellFrm*>(pLow->GetNext()); in lcl_CalcMinRowHeight()