Lines Matching refs:x1
63 const sal_Int32 x1(maPos.getX()); in pointInside() local
67 if(px < x1) return false; in pointInside()
77 const sal_Int32 x1(maPos.getX()); in hLineIntersect() local
83 if((lx1 < x1) && (lx2 < x1)) return false; in hLineIntersect()
91 const sal_Int32 x1(maPos.getX()); in vLineIntersect() local
95 if(lx < x1) return false; in vLineIntersect()
105 const sal_Int32 x1(maPos.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()
111 if(r.vLineIntersect(x1,y1,y2)) return true; in intersection()
118 const sal_Int32 x1(maPos.getX()); in inside() local
122 if(!(r.pointInside(x1,y1))) return false; in inside()
125 if(!(r.pointInside(x1,y2))) return false; in inside()