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

/openjdk7/jdk/src/share/classes/java/awt/
H A DShape.java62 * <p>The <code>contains</code> and <code>intersects</code> methods
67 * determining if a shape contains or intersects a rectangle or if a
197 * Tests if the interior of the <code>Shape</code> intersects the
203 * The {@code Shape.intersects()} method allows a {@code Shape}
234 public boolean intersects(double x, double y, double w, double h); method in interface:Shape
237 * Tests if the interior of the <code>Shape</code> intersects the
239 * The {@code Shape.intersects()} method allows a {@code Shape}
263 * @see #intersects(double, double, double, double)
266 public boolean intersects(Rectangle2D r); method in interface:Shape
303 * <code>intersects</cod
[all...]
H A DPolygon.java49 * <code>contains</code>, <code>intersects</code> and <code>inside</code>
494 public boolean intersects(double x, double y, double w, double h) { method in class:Polygon
495 if (npoints <= 0 || !getBoundingBox().intersects(x, y, w, h)) {
507 public boolean intersects(Rectangle2D r) { method in class:Polygon
508 return intersects(r.getX(), r.getY(), r.getWidth(), r.getHeight());
516 if (npoints <= 0 || !getBoundingBox().intersects(x, y, w, h)) {
H A DRectangle.java46 * Methods which test if an empty {@code Rectangle} contains or intersects
58 * calculations and methods which test if it contains or intersects a
783 public boolean intersects(Rectangle r) { method in class:Rectangle
/openjdk7/jdk/src/share/classes/sun/font/
H A DDelegatingShape.java63 public boolean intersects(double x, double y, double w, double h) { method in class:DelegatingShape
64 return delegate.intersects(x, y, w, h);
67 public boolean intersects(Rectangle2D r) { method in class:DelegatingShape
68 return delegate.intersects(r);
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DEllipse2D.java351 public boolean intersects(double x, double y, double w, double h) { method in class:Ellipse2D
371 // if nearest x,y is inside circle of radius 0.5, then intersects
H A DArea.java602 public boolean intersects(double x, double y, double w, double h) { method in class:Area
606 if (!getCachedBounds().intersects(x, y, w, h)) {
617 public boolean intersects(Rectangle2D r) { method in class:Area
618 return intersects(r.getX(), r.getY(), r.getWidth(), r.getHeight());
H A DLine2D.java579 * {@code (x2,y2)} intersects the line segment from {@code (x3,y3)}
616 * {@code (x2,y2)} intersects this line segment.
636 * Tests if the specified line segment intersects this line segment.
652 * If the specified point intersects the line segment in between the
727 * If the specified point intersects the line segment in between the
758 * If the specified point intersects the line segment in between the
779 * If the specified point intersects the line segment in between the
798 * If the specified point intersects the line segment in between the
819 * If the specified point intersects the line segment in between the
839 * intersects th
1018 public boolean intersects(double x, double y, double w, double h) { method in class:Line2D
1026 public boolean intersects(Rectangle2D r) { method in class:Line2D
[all...]
H A DRectangle2D.java539 * Tests if the specified line segment intersects the interior of this
550 * @return <code>true</code> if the specified line segment intersects
584 * Tests if the specified line segment intersects the interior of this
589 * intersects the interior of this <code>Rectangle2D</code>;
675 public boolean intersects(double x, double y, double w, double h) { method in class:Rectangle2D
H A DRectangularShape.java319 public boolean intersects(Rectangle2D r) { method in class:RectangularShape
320 return intersects(r.getX(), r.getY(), r.getWidth(), r.getHeight());
H A DRoundRectangle2D.java564 public boolean intersects(double x, double y, double w, double h) { method in class:RoundRectangle2D
H A DArc2D.java1234 * Determines whether or not the interior of the arc intersects
1242 * @return <CODE>true</CODE> if the arc intersects the rectangle,
1246 public boolean intersects(double x, double y, double w, double h) { method in class:Arc2D
1387 // We can test for this case by checking if the rectangle intersects
H A DCubicCurve2D.java1441 public boolean intersects(double x, double y, double w, double h) { method in class:CubicCurve2D
1460 public boolean intersects(Rectangle2D r) { method in class:CubicCurve2D
1461 return intersects(r.getX(), r.getY(), r.getWidth(), r.getHeight());
H A DQuadCurve2D.java1124 public boolean intersects(double x, double y, double w, double h) { method in class:QuadCurve2D
1233 // line segment intersects the Y range of the rectangle
1248 // If the part of the line segment that intersects the Y range
1308 public boolean intersects(Rectangle2D r) { method in class:QuadCurve2D
1309 return intersects(r.getX(), r.getY(), r.getWidth(), r.getHeight());
H A DPath2D.java394 * drawing a Quadratic curve that intersects both the current
442 * drawing a B&eacute;zier curve that intersects both the current
1725 * drawing a Quadratic curve that intersects both the current
1742 * drawing a B&eacute;zier curve that intersects both the current
2046 * cases where the specified rectangular area intersects a
2100 * cases where the specified rectangular area intersects a
2127 * cases where the specified rectangular area intersects a
2167 * cases where the specified rectangular area intersects a
2188 * intersects the interior of a specified set of rectangular
2193 * {@link Shape#intersects(doubl
2218 public static boolean intersects(PathIterator pi, method in class:Path2D
2269 public static boolean intersects(PathIterator pi, Rectangle2D r) { method in class:Path2D
2291 public final boolean intersects(double x, double y, double w, double h) { method in class:Path2D
2330 public final boolean intersects(Rectangle2D r) { method in class:Path2D
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSpans.java88 * and the <code>intersects</code> method always
98 * but not including, <code>end</code> intersects
101 public boolean intersects(float start, float end) { method in class:Spans
172 * nextSpan: <------ (intersects)
/openjdk7/jdk/src/share/classes/java/util/
H A DBitSet.java868 * @return boolean indicating whether this {@code BitSet} intersects
872 public boolean intersects(BitSet set) { method in class:BitSet
/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.cpp291 bool BitMap::intersects(const BitMap other) const { function in class:BitMap
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DMetacity.java2014 public boolean intersects(double x, double y, double w, double h) { method in class:Metacity.RoundRectClipShape
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DCheck.java1195 boolean intersects(Type t, List<Type> ts) { method in class:Check
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.hpp477 bool intersects(Range* r) const { return intersects_at(r) != -1; } function in class:Range
627 bool intersects(Interval* i) const { return _first->intersects(i->_first); } function in class:Interval
636 bool current_intersects(Interval* it) { return _current->intersects(it->_current); };

Completed in 94 milliseconds