Lines Matching defs:left
125 void SetLeft(double left)
127 x_ = left;
166 double left = std::clamp(x_, other.Left(), other.Right());
168 right = std::clamp(right, other.Left(), other.Right()) - left;
170 return Rect(left, top, right, bottom);
249 double left = std::max(Left(), other.Left());
253 return Rect(left, top, right - left, bottom - top);
258 double left = std::min(Left(), other.Left());
262 return Rect(left, top, right - left, bottom - top);