Lines Matching refs:left
25 is less than or equal to its left, or if its bottom is less than or equal to
41 Many other rectangles are empty; if left is equal to or greater than right,
112 /** Returns left edge of SkIRect, if sorted.
117 int32_t left() const { return fLeft; }
140 /** Returns left edge of SkIRect, if sorted. Call isEmpty() to see if SkIRect may be invalid,
240 Many other rectangles are empty; if left is equal to or greater than right,
246 /** Sets SkIRect to (left, top, right, bottom).
247 left and right are not sorted; left is not necessarily less than right.
250 @param left stored in fLeft
255 void setLTRB(int32_t left, int32_t top, int32_t right, int32_t bottom) {
256 fLeft = left;
293 If dx is negative, SkIRect returned is moved to the left.
311 If offset.x() is negative, SkIRect returned is moved to the left.
332 @return SkIRect inset symmetrically left and right, top and bottom
350 @return SkIRect outset symmetrically left and right, top and bottom
361 If dx is negative, moves SkIRect returned to the left.
379 If delta.fX is negative, moves SkIRect returned to the left.
434 If dL is positive, narrows SkIRect on the left. If negative, widens it on the left.
439 The resulting SkIRect is not checked for validity. Thus, if the resulting SkIRect left is
581 is less than or equal to its left, or if its bottom is less than or equal to
591 Many other rectangles are empty; if left is equal to or greater than right,
731 /** Returns left edge of SkRect, if sorted. Call isSorted() to see if SkRect is valid.
745 /** Returns left edge of SkRect, if sorted. Call isSorted() to see if SkRect is valid.
750 SkScalar left() const { return fLeft; }
787 /** Returns average of left edge and right edge. Result does not change if SkRect
835 /** Returns four points in quad that enclose SkRect ordered as: top-left, top-right,
836 bottom-right, bottom-left.
848 Many other rectangles are empty; if left is equal to or greater than right,
866 /** Sets SkRect to (left, top, right, bottom).
867 left and right are not sorted; left is not necessarily less than right.
870 @param left stored in fLeft
875 void setLTRB(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) {
876 fLeft = left;
966 If dx is negative, SkRect returned is moved to the left.
995 @return SkRect inset symmetrically left and right, top and bottom
1010 @return SkRect outset symmetrically left and right, top and bottom
1018 If dx is negative, moves SkRect to the left.
1036 If delta.fX is negative, moves SkRect to the left.
1185 fLeft = std::min(fLeft, r.left());