Lines Matching defs:right

24     from position, width, and height. SkIRect describes an area; if its right
41 Many other rectangles are empty; if left is equal to or greater than right,
126 /** Returns right edge of SkIRect, if sorted.
131 int32_t right() const { return fRight; }
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.
252 @param right stored in fRight
255 void setLTRB(int32_t left, int32_t top, int32_t right, int32_t bottom) {
258 fRight = right;
294 If dx is positive, SkIRect returned is moved to the right.
312 If offset.x() is positive, SkIRect returned is moved to the right.
332 @return SkIRect inset symmetrically left and right, top and bottom
350 @return SkIRect outset symmetrically left and right, top and bottom
362 If dx is positive, moves SkIRect returned to the right.
380 If delta.fX is positive, moves SkIRect returned to the right.
436 If dR is positive, narrows SkIRect on the right. If negative, widens it on the right.
440 greater than right, the SkIRect will be considered empty. Call sort() after this call
580 from position, width, and height. SkRect describes an area; if its right
591 Many other rectangles are empty; if left is equal to or greater than right,
759 /** Returns right edge of SkRect, if sorted. Call isSorted() to see if SkRect is valid.
764 SkScalar right() const { return fRight; }
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.
872 @param right stored in fRight
875 void setLTRB(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) {
878 fRight = right;
967 If dx is positive, SkRect returned is moved to the right.
995 @return SkRect inset symmetrically left and right, top and bottom
1010 @return SkRect outset symmetrically left and right, top and bottom
1019 If dx is positive, moves SkRect to the right.
1037 If delta.fX is positive, moves SkRect to the right.
1187 fRight = std::max(fRight, r.right());