Lines Matching refs:top
12 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom) { in join() argument
14 if (left >= right || top >= bottom) { in join()
20 this->set(left, top, right, bottom); in join()
23 if (top < fTop) fTop = top; in join()
114 bool SkRect::intersect(SkScalar left, SkScalar top, SkScalar right, in intersect() argument
116 if (left < right && top < bottom && !this->isEmpty() && // check for empties in intersect()
117 fLeft < right && left < fRight && fTop < bottom && top < fBottom) in intersect()
120 if (fTop < top) fTop = top; in intersect()
148 void SkRect::join(SkScalar left, SkScalar top, SkScalar right, in join() argument
151 if (left >= right || top >= bottom) { in join()
157 this->set(left, top, right, bottom); in join()
160 if (top < fTop) fTop = top; in join()