Lines Matching refs:top
130 void SetTop(double top)
132 y_ = top;
167 double top = std::clamp(y_, other.Top(), other.Bottom());
169 bottom = std::clamp(bottom, other.Top(), other.Bottom()) - top;
170 return Rect(left, top, right, bottom);
251 double top = std::max(Top(), other.Top());
253 return Rect(left, top, right - left, bottom - top);
260 double top = std::min(Top(), other.Top());
262 return Rect(left, top, right - left, bottom - top);