Lines Matching refs:top_
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()
21 : top_(vertical), in InsetsF()
26 : top_(top), left_(left), bottom_(bottom), right_(right) {} in InsetsF()
28 constexpr float top() const { return top_; } in top()
39 constexpr float height() const { return top_ + bottom_; } in height()
45 top_ = top; in Set()
52 return top_ == insets.top_ && left_ == insets.left_ &&
61 top_ += insets.top_;
68 top_ -= insets.top_;
75 return InsetsF(-top_, -left_, -bottom_, -right_);
87 float top_;