Lines Matching defs:top
26 its top, it is considered empty.
42 or if top is equal to or greater than bottom. Setting all members to zero
119 /** Returns top edge of SkIRect, if sorted. Call isEmpty() to see if SkIRect may be invalid,
124 int32_t top() const { return fTop; }
147 /** Returns top edge of SkIRect, if sorted. Call isEmpty() to see if SkIRect may be invalid,
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.
251 @param top stored in fTop
255 void setLTRB(int32_t left, int32_t top, int32_t right, int32_t bottom) {
257 fTop = top;
332 @return SkIRect inset symmetrically left and right, top and bottom
350 @return SkIRect outset symmetrically left and right, top and bottom
435 If dT is positive, shrinks SkIRect on the top. If negative, lengthens it on the top.
582 its top, it is considered empty.
592 or if top is equal to or greater than bottom. Setting all members to zero
738 /** Returns top edge of SkRect, if sorted. Call isEmpty() to see if SkRect may be invalid,
752 /** Returns top edge of SkRect, if sorted. Call isEmpty() to see if SkRect may be invalid,
757 SkScalar top() const { return fTop; }
797 /** Returns average of top edge and bottom edge. Result does not change if SkRect
835 /** Returns four points in quad that enclose SkRect ordered as: top-left, top-right,
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.
871 @param top stored in fTop
875 void setLTRB(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) {
877 fTop = top;
995 @return SkRect inset symmetrically left and right, top and bottom
1010 @return SkRect outset symmetrically left and right, top and bottom
1186 fTop = std::min(fTop, r.top());