Lines Matching refs:left
35 left = 0; in makeInvalid()
45 if (left < rhs.left) { in operator <()
47 } else if (left == rhs.left) { in operator <()
61 right -= left - x; in offsetTo()
63 left = x; in offsetTo()
69 left += x; in offsetBy()
77 this->left += _left; in inset()
85 const Rect result(left + rhs.x, top + rhs.y, right + rhs.x, bottom + rhs.y); in operator +()
90 const Rect result(left - rhs.x, top - rhs.y, right - rhs.x, bottom - rhs.y); in operator -()
95 result->left = max(left, with.left); in intersect()
105 result = Rect(width - result.right, result.top, width - result.left, in transform()
109 result = Rect(result.left, height - result.bottom, result.right, in transform()
113 int left = height - result.bottom; in transform() local
114 int top = result.left; in transform()
117 result = Rect(left, top, right, bottom); in transform()
126 mask |= (exclude.left > left) ? 1 : 0; in reduce()
139 result.right = min(result.right, exclude.left); in reduce()
143 result.left = max(result.left, exclude.right); in reduce()
154 return android::base::StringPrintf("Rect(%d, %d, %d, %d)", rect.left, rect.top, rect.right, in to_string()