Lines Matching refs:top_
26 constexpr Insets() : top_(0), left_(0), bottom_(0), right_(0) {} in Insets()
28 : top_(all), left_(all), bottom_(all), right_(all) {} in Insets()
30 : top_(vertical), in Insets()
35 : top_(top), left_(left), bottom_(bottom), right_(right) {} in Insets()
37 constexpr int top() const { return top_; } in top()
48 constexpr int height() const { return top_ + bottom_; } in height()
54 top_ = top; in Set()
61 return top_ == insets.top_ && left_ == insets.left_ &&
70 top_ += insets.top_;
77 top_ -= insets.top_;
84 return Insets(-top_, -left_, -bottom_, -right_);
112 int top_;