Searched defs:intersects (Results 1 - 16 of 16) sorted by relevance

/frameworks/base/awt/java/awt/
H A DShape.java35 * Shape contains or intersects a Rectangle or contains a Point.
137 * width, height] parameters intersects the interior of the Shape.
148 * parameters intersects the interior of the Shape, false otherwise.
150 public boolean intersects(double x, double y, double w, double h); method in interface:Shape
154 * object intersects the interior of the Shape.
158 * @return true, if the Rectangle2D intersects the interior of the Shape,
161 public boolean intersects(Rectangle2D r); method in interface:Shape
H A DPolygon.java409 * width, height] intersects the interior of the Polygon.
421 * @return true, if the specified rectangle intersects the interior of the
423 * @see java.awt.Shape#intersects(double, double, double, double)
425 public boolean intersects(double x, double y, double width, double height) { method in class:Polygon
470 * Rectangle2D object intersects the interior of the Polygon.
474 * @return true, if the Rectangle2D intersects the interior of the Polygon,
476 * @see java.awt.Shape#intersects(java.awt.geom.Rectangle2D)
478 public boolean intersects(Rectangle2D rect) { method in class:Polygon
479 return intersects(rect.getX(), rect.getY(), rect.getWidth(), rect.getHeight());
H A DRectangle.java599 * Determines whether or not the original rectangle intersects the specified
606 public boolean intersects(Rectangle r) { method in class:Rectangle
/frameworks/base/awt/java/awt/geom/
H A DArea.java134 public boolean intersects(double x, double y, double width, double height) { method in class:Area
135 return s == null ? false : s.intersects(x, y, width, height);
138 public boolean intersects(Rectangle2D r) { method in class:Area
142 return s == null ? false : s.intersects(r);
H A DEllipse2D.java423 public boolean intersects(double rx, double ry, double rw, double rh) { method in class:Ellipse2D
H A DLine2D.java923 public boolean intersects(double rx, double ry, double rw, double rh) { method in class:Line2D
924 return intersects(new Rectangle2D.Double(rx, ry, rw, rh));
927 public boolean intersects(Rectangle2D r) { method in class:Line2D
H A DRectangle2D.java686 public boolean intersects(double x, double y, double width, double height) { method in class:Rectangle2D
H A DRectangularShape.java268 public boolean intersects(Rectangle2D rect) { method in class:RectangularShape
269 return intersects(rect.getX(), rect.getY(), rect.getWidth(), rect.getHeight());
H A DRoundRectangle2D.java590 public boolean intersects(double rx, double ry, double rw, double rh) { method in class:RoundRectangle2D
H A DArc2D.java1113 public boolean intersects(double rx, double ry, double rw, double rh) { method in class:Arc2D
H A DCubicCurve2D.java1010 public boolean intersects(double rx, double ry, double rw, double rh) { method in class:CubicCurve2D
1019 public boolean intersects(Rectangle2D r) { method in class:CubicCurve2D
1020 return intersects(r.getX(), r.getY(), r.getWidth(), r.getHeight());
H A DGeneralPath.java587 public boolean intersects(double rx, double ry, double rw, double rh) { method in class:GeneralPath
600 public boolean intersects(Rectangle2D r) { method in class:GeneralPath
601 return intersects(r.getX(), r.getY(), r.getWidth(), r.getHeight());
H A DQuadCurve2D.java880 public boolean intersects(double rx, double ry, double rw, double rh) { method in class:QuadCurve2D
889 public boolean intersects(Rectangle2D r) { method in class:QuadCurve2D
890 return intersects(r.getX(), r.getY(), r.getWidth(), r.getHeight());
/frameworks/base/graphics/java/android/graphics/
H A DRect.java350 * If the rectangle specified by left,top,right,bottom intersects this
354 * intersection, use intersects()
388 * If the specified rectangle intersects this rectangle, return true and set
391 * is empty. To just test for intersection, use intersects()
406 * To just test for intersection, use intersects()
427 * Returns true if this rectangle intersects the specified rectangle.
437 * @return true iff the specified rectangle intersects this rectangle. In
440 public boolean intersects(int left, int top, int right, int bottom) { method in class:Rect
455 public static boolean intersects(Rect a, Rect b) { method in class:Rect
H A DRectF.java271 * If the rectangle specified by left,top,right,bottom intersects this
275 * intersection, use intersects()
309 * If the specified rectangle intersects this rectangle, return true and set
312 * is empty. To just test for intersection, use intersects()
327 * To just test for intersection, use intersects()
348 * Returns true if this rectangle intersects the specified rectangle.
358 * @return true iff the specified rectangle intersects this rectangle. In
361 public boolean intersects(float left, float top, float right, method in class:RectF
377 public static boolean intersects(RectF a, RectF b) { method in class:RectF
/frameworks/base/awt/org/apache/harmony/awt/gl/
H A DMultiRectArea.java517 if (r[i].intersects(r[j])) {
784 public boolean intersects(double x, double y, double w, double h) { method in class:MultiRectArea
787 return intersects(r);
793 public boolean intersects(Rectangle2D r) { method in class:MultiRectArea
798 if (r.intersects(rect[i], rect[i+1], rect[i + 2]-rect[i]+1, rect[i + 3]-rect[i + 1]+1)) {

Completed in 230 milliseconds