Home | History | Annotate | Download | only in ui

Lines Matching refs:left

34     left = 0;
44 if (left < rhs.left) {
46 } else if (left == rhs.left) {
60 right -= left - x;
62 left = x;
68 left += 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);
86 result->left = max(left, with.left);
96 result = Rect(width - result.right, result.top, width - result.left,
100 result = Rect(result.left, height - result.bottom, result.right,
104 int left = height - result.bottom;
105 int top = result.left;
108 result = Rect(left, top, right, bottom);
117 mask |= (exclude.left > left) ? 1 : 0;
130 result.right = min(result.right, exclude.left);
134 result.left = max(result.left, exclude.right);