Lines Matching refs:bottom
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()
25 if (bottom > fBottom) fBottom = bottom; in join()
103 SkScalar bottom) { in intersect() argument
104 if (left < right && top < bottom && !this->isEmpty() && // check for empties in intersect()
105 fLeft < right && left < fRight && fTop < bottom && top < fBottom) in intersect()
110 if (fBottom > bottom) fBottom = bottom; in intersect()
153 SkScalar bottom) { in join() argument
155 if (left >= right || top >= bottom) { in join()
161 this->set(left, top, right, bottom); in join()
166 if (bottom > fBottom) fBottom = bottom; in join()