Lines Matching refs:right_
26 constexpr Insets() : top_(0), left_(0), bottom_(0), right_(0) {} in Insets()
28 : top_(all), left_(all), bottom_(all), right_(all) {} in Insets()
33 right_(horizontal) {} in Insets()
35 : top_(top), left_(left), bottom_(bottom), right_(right) {} in Insets()
40 constexpr int right() const { return right_; } in right()
44 constexpr int width() const { return left_ + right_; } in width()
57 right_ = right; in Set()
62 bottom_ == insets.bottom_ && right_ == insets.right_;
73 right_ += insets.right_;
80 right_ -= insets.right_;
84 return Insets(-top_, -left_, -bottom_, -right_);
115 int right_; variable