Lines Matching full:intersects
279 /** If r intersects this rectangle, return true and set this rectangle to that
325 /** If the rectangle specified by left,top,right,bottom intersects this rectangle,
345 static bool Intersects(const SkIRect& a, const SkIRect& b) {
674 /** If this rectangle intersects r, return true and set this rectangle to that
680 /** If this rectangle intersects the rectangle specified by left, top, right, bottom,
697 static bool Intersects(SkScalar al, SkScalar at, SkScalar ar, SkScalar ab,
711 bool intersects(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) const {
712 return Intersects(fLeft, fTop, fRight, fBottom, left, top, right, bottom);
715 bool intersects(const SkRect& r) const {
716 return Intersects(fLeft, fTop, fRight, fBottom,
723 static bool Intersects(const SkRect& a, const SkRect& b) {
724 return Intersects(a.fLeft, a.fTop, a.fRight, a.fBottom,