Lines Matching refs:bottom_
26 constexpr Insets() : top_(0), left_(0), bottom_(0), right_(0) {} in Insets()
28 : top_(all), left_(all), bottom_(all), right_(all) {} in Insets()
32 bottom_(vertical), in Insets()
35 : top_(top), left_(left), bottom_(bottom), right_(right) {} in Insets()
39 constexpr int bottom() const { return bottom_; } in bottom()
48 constexpr int height() const { return top_ + bottom_; } in height()
56 bottom_ = bottom; in Set()
62 bottom_ == insets.bottom_ && right_ == insets.right_;
72 bottom_ += insets.bottom_;
79 bottom_ -= insets.bottom_;
84 return Insets(-top_, -left_, -bottom_, -right_);
114 int bottom_; variable