Home | History | Annotate | Download | only in ui

Lines Matching refs:right

36     right = -1;
50 if (right < rhs.right) {
60 right -= left - x;
70 right += x;
76 const Rect result(left + rhs.x, top + rhs.y, right + rhs.x, bottom + rhs.y);
81 const Rect result(left - rhs.x, top - rhs.y, right - rhs.x, bottom - rhs.y);
88 result->right = min(right, with.right);
96 result = Rect(width - result.right, result.top, width - result.left,
100 result = Rect(result.left, height - result.bottom, result.right,
106 int right = height - result.top;
107 int bottom = result.right;
108 result = Rect(left, top, right, bottom);
119 mask |= (exclude.right < right) ? 4 : 0;
130 result.right = min(result.right, exclude.left);
134 result.left = max(result.left, exclude.right);