Lines Matching refs:nTop
52 sal_Int32 Height (const sal_Int32 nTop, const sal_Int32 nBottom) in Height() argument
54 return nBottom - nTop + 1; in Height()
92 const sal_Int32 nTop (Floor(rBox.Y1)); in ConvertRectangle() local
95 return awt::Rectangle (nLeft,nTop,nRight-nLeft,nBottom-nTop); in ConvertRectangle()
143 const sal_Int32 nTop (::std::max(rBox1.Y, rBox2.Y)); in Intersection() local
146 if (nLeft >= nRight || nTop >= nBottom) in Intersection()
149 return awt::Rectangle(nLeft,nTop, Width(nLeft,nRight), Height(nTop,nBottom)); in Intersection()
160 const double nTop (::std::max(rBox1.Y1, rBox2.Y1)); in Intersection() local
163 if (nLeft >= nRight || nTop >= nBottom) in Intersection()
166 return geometry::RealRectangle2D(nLeft,nTop, nRight, nBottom); in Intersection()
208 const sal_Int32 nTop (::std::min(rBox1.Y, rBox2.Y)); in Union() local
211 if (nLeft >= nRight || nTop >= nBottom) in Union()
214 return awt::Rectangle(nLeft,nTop, Width(nLeft,nRight), Height(nTop,nBottom)); in Union()
225 const double nTop (::std::min(rBox1.Y1, rBox2.Y1)); in Union() local
228 if (nLeft >= nRight || nTop >= nBottom) in Union()
231 return geometry::RealRectangle2D(nLeft,nTop, nRight, nBottom); in Union()