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

/frameworks/base/graphics/java/android/graphics/
H A DRect.java409 * If the rectangle specified by left,top,right,bottom intersects this
413 * intersection, use {@link #intersects(Rect, Rect)}.
439 * If the specified rectangle intersects this rectangle, return true and set
442 * is empty. To just test for intersection, use intersects()
458 * To just test for intersection, use intersects()
479 * Returns true if this rectangle intersects the specified rectangle.
489 * @return true iff the specified rectangle intersects this rectangle. In
492 public boolean intersects(int left, int top, int right, int bottom) { method in class:Rect
506 public static boolean intersects(Rect a, Rect b) { method in class:Rect
H A DRectF.java327 * If the rectangle specified by left,top,right,bottom intersects this
331 * intersection, use intersects()
365 * If the specified rectangle intersects this rectangle, return true and set
368 * is empty. To just test for intersection, use intersects()
383 * To just test for intersection, use intersects()
404 * Returns true if this rectangle intersects the specified rectangle.
414 * @return true iff the specified rectangle intersects this rectangle. In
417 public boolean intersects(float left, float top, float right, method in class:RectF
433 public static boolean intersects(RectF a, RectF b) { method in class:RectF
/frameworks/base/libs/hwui/
H A DRect.h128 bool intersects(float l, float t, float r, float b) const { function in class:android::uirenderer::Rect
137 bool intersects(const Rect& r) const { function in class:android::uirenderer::Rect
138 return intersects(r.left, r.top, r.right, r.bottom);
H A DLayerBuilder.cpp38 bool intersects(const Rect& rect) const { function in class:android::uirenderer::BatchBase
39 if (!rect.intersects(mBounds)) return false;
42 if (rect.intersects(op->computedState.clippedBounds)) {
132 if (intersects(op->computedState.clippedBounds)) return false;
225 if (overBatch->intersects(clippedBounds)) {
H A DDeferredDisplayList.cpp79 bool intersects(const Rect& rect) { function in class:android::uirenderer::DrawBatch
80 if (!rect.intersects(mBounds)) return false;
83 if (rect.intersects(mOps[i].state->mBounds)) {
85 DEFER_LOGD("op intersects with op %p with bounds %f %f %f %f:", mOps[i].op,
189 if (intersects(state->mBounds)) return false;
571 if (overBatch->intersects(state->mBounds)) {
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DRoundRectangle.java211 public boolean intersects(double x, double y, double w, double h) { method in class:RoundRectangle
/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 DMLand.java697 if (ob.intersects(p) && !DEBUG_IDDQD) {
1207 public boolean intersects(Player p) { method in class:MLand.Obstacle
1263 public boolean intersects(Player p) { method in class:MLand.Pop

Completed in 3186 milliseconds