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

/frameworks/base/libs/hwui/
H A DRect.h117 bool intersects(float l, float t, float r, float b) const { function in class:android::uirenderer::Rect
121 bool intersects(const Rect& r) const { function in class:android::uirenderer::Rect
122 return intersects(r.left, r.top, r.right, r.bottom);
/frameworks/base/graphics/java/android/graphics/
H A DRect.java352 * If the rectangle specified by left,top,right,bottom intersects this
356 * intersection, use {@link #intersects(Rect, Rect)}.
390 * If the specified rectangle intersects this rectangle, return true and set
393 * is empty. To just test for intersection, use intersects()
408 * To just test for intersection, use intersects()
429 * Returns true if this rectangle intersects the specified rectangle.
439 * @return true iff the specified rectangle intersects this rectangle. In
442 public boolean intersects(int left, int top, int right, int bottom) { method in class:Rect
457 public static boolean intersects(Rect a, Rect b) { method in class:Rect
H A DRectF.java302 * If the rectangle specified by left,top,right,bottom intersects this
306 * intersection, use intersects()
340 * If the specified rectangle intersects this rectangle, return true and set
343 * is empty. To just test for intersection, use intersects()
358 * To just test for intersection, use intersects()
379 * Returns true if this rectangle intersects the specified rectangle.
389 * @return true iff the specified rectangle intersects this rectangle. In
392 public boolean intersects(float left, float top, float right, method in class:RectF
408 public static boolean intersects(RectF a, RectF b) { method in class:RectF

Completed in 91 milliseconds