Lines Matching refs:x2
65 const sal_Int32 x2(maPos.getX()+maSize.getX()); in pointInside() local
68 if(px >= x2) return false; in pointInside()
79 const sal_Int32 x2(maPos.getX()+maSize.getX()); in hLineIntersect() local
84 if((lx1 >= x2) && (lx2 >= x2)) return false; in hLineIntersect()
93 const sal_Int32 x2(maPos.getX()+maSize.getX()); in vLineIntersect() local
96 if(lx >= x2) return false; in vLineIntersect()
107 const sal_Int32 x2(maPos.getX()+maSize.getX()); in intersection() local
109 if(r.hLineIntersect(x1,x2,y1)) return true; in intersection()
110 if(r.hLineIntersect(x1,x2,y2)) return true; in intersection()
112 if(r.vLineIntersect(x2,y1,y2)) return true; in intersection()
120 const sal_Int32 x2(maPos.getX()+maSize.getX()); in inside() local
123 if(!(r.pointInside(x2,y1))) return false; in inside()
124 if(!(r.pointInside(x2,y2))) return false; in inside()