Lines Matching refs:nLeft
87 const long nLeft(std::min(rRect.Left(), rRect.Right())); in RegionBand() local
94 mpFirstBand->Union(nLeft, nRight); in RegionBand()
899 void RegionBand::Union(long nLeft, long nTop, long nRight, long nBottom) in Union() argument
901 DBG_ASSERT( nLeft <= nRight, "RegionBand::Union() - nLeft > nRight" ); in Union()
911 pBand->Union( nLeft, nRight ); in Union()
936 void RegionBand::Intersect(long nLeft, long nTop, long nRight, long nBottom) in Intersect() argument
948 pBand->Intersect(nLeft, nRight); in Intersect()
998 void RegionBand::Exclude(long nLeft, long nTop, long nRight, long nBottom) in Exclude() argument
1000 DBG_ASSERT( nLeft <= nRight, "RegionBand::Exclude() - nLeft > nRight" ); in Exclude()
1012 pBand->Exclude(nLeft, nRight); in Exclude()
1040 void RegionBand::XOr(long nLeft, long nTop, long nRight, long nBottom) in XOr() argument
1042 DBG_ASSERT( nLeft <= nRight, "RegionBand::Exclude() - nLeft > nRight" ); in XOr()
1054 pBand->XOr(nLeft, nRight); in XOr()