Lines Matching refs:bottom_
17 constexpr InsetsF() : top_(0.f), left_(0.f), bottom_(0.f), right_(0.f) {} in InsetsF()
19 : top_(all), left_(all), bottom_(all), right_(all) {} in InsetsF()
23 bottom_(vertical), in InsetsF()
26 : top_(top), left_(left), bottom_(bottom), right_(right) {} in InsetsF()
30 constexpr float bottom() const { return bottom_; } in bottom()
39 constexpr float height() const { return top_ + bottom_; } in height()
47 bottom_ = bottom; in Set()
53 bottom_ == insets.bottom_ && right_ == insets.right_;
63 bottom_ += insets.bottom_;
70 bottom_ -= insets.bottom_;
75 return InsetsF(-top_, -left_, -bottom_, -right_);
89 float bottom_; variable