Lines Matching refs:nRemaining
78 SwTwips nRemaining = 0; in lcl_CalcContentHeight() local
86 nRemaining += nTmp; in lcl_CalcContentHeight()
92 nRemaining += nTmp; in lcl_CalcContentHeight()
97 nRemaining += nTmp; in lcl_CalcContentHeight()
104 return nRemaining; in lcl_CalcContentHeight()
255 SwTwips nRemaining, nOldHeight; in FormatSize() local
299 nRemaining = 0; in FormatSize()
304 nRemaining += pFrm->Frm().Height(); in FormatSize()
309 nRemaining += ((SwTxtFrm*)pFrm)->GetParHeight() in FormatSize()
313 nRemaining += ((SwSectionFrm*)pFrm)->Undersize(); in FormatSize()
316 if ( nRemaining < nMinHeight ) in FormatSize()
317 nRemaining = nMinHeight; in FormatSize()
319 SwTwips nDiff = nRemaining - nOldHeight; in FormatSize()
327 if( nRemaining <= nMinHeight ) in FormatSize()
328 nRemaining = ( nMaxHeight + nMinHeight + 1 ) / 2; in FormatSize()
335 if( nRemaining >= nMaxHeight ) in FormatSize()
336 nRemaining = ( nMaxHeight + nMinHeight + 1 ) / 2; in FormatSize()
339 nDiff = nRemaining - nOldHeight; in FormatSize()
399 } while( nRemaining<=nMaxHeight && nOldHeight!=Prt().Height() ); in FormatSize()