Home | History | Annotate | Download | only in ui

Lines Matching refs:left

31     left = 0;
41 if (left < rhs.left) {
43 } else if (left == rhs.left) {
57 right -= left - x;
59 left = x;
65 left += x;
73 const Rect result(left + rhs.x, top + rhs.y, right + rhs.x, bottom + rhs.y);
78 const Rect result(left - rhs.x, top - rhs.y, right - rhs.x, bottom - rhs.y);
83 result->left = max(left, with.left);
93 result = Rect(width - result.right, result.top, width - result.left,
97 result = Rect(result.left, height - result.bottom, result.right,
101 int left = height - result.bottom;
102 int top = result.left;
105 result = Rect(left, top, right, bottom);
114 mask |= (exclude.left > left) ? 1 : 0;
127 result.right = exclude.left;
131 result.left = exclude.right;