Lines Matching defs:bottom

25     is less than or equal to its left, or if its bottom is less than or equal to
42 or if top is equal to or greater than bottom. Setting all members to zero
133 /** Returns bottom edge of SkIRect, if sorted. Call isEmpty() to see if SkIRect may be invalid,
138 int32_t bottom() const { return fBottom; }
241 or if top is equal to or greater than bottom. Setting all members to zero
246 /** Sets SkIRect to (left, top, right, bottom).
248 top and bottom are not sorted; top is not necessarily less than bottom.
253 @param bottom stored in fBottom
255 void setLTRB(int32_t left, int32_t top, int32_t right, int32_t bottom) {
259 fBottom = bottom;
332 @return SkIRect inset symmetrically left and right, top and bottom
350 @return SkIRect outset symmetrically left and right, top and bottom
437 If dB is positive, shrinks SkIRect on the bottom. If negative, lengthens it on the bottom.
581 is less than or equal to its left, or if its bottom is less than or equal to
592 or if top is equal to or greater than bottom. Setting all members to zero
766 /** Returns bottom edge of SkRect, if sorted. Call isEmpty() to see if SkRect may be invalid,
771 SkScalar bottom() const { return fBottom; }
797 /** Returns average of top edge and bottom edge. Result does not change if SkRect
836 bottom-right, bottom-left.
849 or if top is equal to or greater than bottom. Setting all members to zero
866 /** Sets SkRect to (left, top, right, bottom).
868 top and bottom are not sorted; top is not necessarily less than bottom.
873 @param bottom stored in fBottom
875 void setLTRB(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) {
879 fBottom = bottom;
995 @return SkRect inset symmetrically left and right, top and bottom
1010 @return SkRect outset symmetrically left and right, top and bottom
1188 fBottom = std::max(fBottom, r.bottom());