Lines Matching refs:nBottom

86     const long nBottom(std::max(rRect.Top(), rRect.Bottom()));  in RegionBand()  local
91 mpFirstBand = new ImplRegionBand(nTop, nBottom); in RegionBand()
375 void RegionBand::ImplAddMissingBands(const long nTop, const long nBottom) in ImplAddMissingBands() argument
383 while (pBand != NULL && nCurrentTop<nBottom) in ImplAddMissingBands()
390 ::std::min(nBottom,pBand->mnYTop-1)); in ImplAddMissingBands()
405 if (nCurrentTop <= nBottom in ImplAddMissingBands()
406 && (pBand==NULL || nBottom>pBand->mnYBottom)) in ImplAddMissingBands()
414 nBottom)); in ImplAddMissingBands()
728 void RegionBand::InsertBands(long nTop, long nBottom) in InsertBands() argument
734 mpFirstBand = new ImplRegionBand( nTop, nBottom ); in InsertBands()
752 if ( nBottom < mpFirstBand->mnYTop ) in InsertBands()
754 pNewBand->mnYBottom = nBottom; in InsertBands()
780 if ( !bBottomBoundaryInserted && (nTop != nBottom) ) in InsertBands()
782 bBottomBoundaryInserted = InsertSingleBand( pBand, nBottom ); in InsertBands()
899 void RegionBand::Union(long nLeft, long nTop, long nRight, long nBottom) in Union() argument
902 DBG_ASSERT( nTop <= nBottom, "RegionBand::Union() - nTop > nBottom" ); in Union()
910 if ( pBand->mnYBottom <= nBottom ) in Union()
936 void RegionBand::Intersect(long nLeft, long nTop, long nRight, long nBottom) in Intersect() argument
945 if((pBand->mnYTop >= nTop) && (pBand->mnYBottom <= nBottom)) in Intersect()
998 void RegionBand::Exclude(long nLeft, long nTop, long nRight, long nBottom) in Exclude() argument
1001 DBG_ASSERT( nTop <= nBottom, "RegionBand::Exclude() - nTop > nBottom" ); in Exclude()
1010 if(pBand->mnYBottom <= nBottom) in Exclude()
1040 void RegionBand::XOr(long nLeft, long nTop, long nRight, long nBottom) in XOr() argument
1043 DBG_ASSERT( nTop <= nBottom, "RegionBand::Exclude() - nTop > nBottom" ); in XOr()
1052 if(pBand->mnYBottom <= nBottom) in XOr()