Home | History | Annotate | Download | only in core

Lines Matching refs:top

19 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom)
22 if (left >= right || top >= bottom)
27 this->set(left, top, right, bottom);
31 if (top < fTop) fTop = top;
107 bool SkRect::intersect(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom)
109 if (left < right && top < bottom && !this->isEmpty() && // check for empties
110 fLeft < right && left < fRight && fTop < bottom && top < fBottom)
113 if (fTop < top) fTop = top;
127 void SkRect::join(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom)
130 if (left >= right || top >= bottom)
135 this->set(left, top, right, bottom);
139 if (top < fTop) fTop = top;