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

/frameworks/base/graphics/java/android/graphics/
H A DRect.java375 * If the rectangle specified by left,top,right,bottom intersects this
379 * intersection, use {@link #intersects(Rect, Rect)}.
404 * If the specified rectangle intersects this rectangle, return true and set
407 * is empty. To just test for intersection, use intersects()
422 * To just test for intersection, use intersects()
442 * Returns true if this rectangle intersects the specified rectangle.
452 * @return true iff the specified rectangle intersects this rectangle. In
455 public boolean intersects(int left, int top, int right, int bottom) { method in class:Rect
469 public static boolean intersects(Rect a, Rect b) { method in class:Rect
H A DRectF.java328 * If the rectangle specified by left,top,right,bottom intersects this
332 * intersection, use intersects()
366 * If the specified rectangle intersects this rectangle, return true and set
369 * is empty. To just test for intersection, use intersects()
384 * To just test for intersection, use intersects()
405 * Returns true if this rectangle intersects the specified rectangle.
415 * @return true iff the specified rectangle intersects this rectangle. In
418 public boolean intersects(float left, float top, float right, method in class:RectF
434 public static boolean intersects(RectF a, RectF b) { method in class:RectF
/frameworks/base/libs/hwui/
H A DRect.h122 bool intersects(float l, float t, float r, float b) const { function in class:android::uirenderer::Rect
126 bool intersects(const Rect& r) const { function in class:android::uirenderer::Rect
127 return intersects(r.left, r.top, r.right, r.bottom);
H A DDeferredDisplayList.cpp77 bool intersects(const Rect& rect) { function in class:android::uirenderer::DrawBatch
78 if (!rect.intersects(mBounds)) return false;
81 if (rect.intersects(mOps[i].state->mBounds)) {
83 DEFER_LOGD("op intersects with op %p with bounds %f %f %f %f:", mOps[i].op,
191 if (intersects(state->mBounds)) return false;
590 if (overBatch->intersects(state->mBounds)) {
/frameworks/base/core/java/android/net/
H A DNetworkStatsHistory.java579 * Quickly determine if this history intersects with given window.
581 public boolean intersects(long start, long end) { method in class:NetworkStatsHistory
/frameworks/base/packages/SystemUI/src/com/android/systemui/egg/
H A DLLand.java462 if (mPlaying && ob.intersects(mDroid) && !DEBUG_IDDQD) {
832 public boolean intersects(Player p) { method in class:LLand.Obstacle
877 public boolean intersects(Player p) { method in class:LLand.Pop

Completed in 282 milliseconds