Lines Matching refs:left_
26 constexpr Insets() : top_(0), left_(0), bottom_(0), right_(0) {} in Insets()
28 : top_(all), left_(all), bottom_(all), right_(all) {} in Insets()
31 left_(horizontal), in Insets()
35 : top_(top), left_(left), bottom_(bottom), right_(right) {} in Insets()
38 constexpr int left() const { return left_; } in left()
44 constexpr int width() const { return left_ + right_; } in width()
55 left_ = left; in Set()
61 return top_ == insets.top_ && left_ == insets.left_ &&
71 left_ += insets.left_;
78 left_ -= insets.left_;
84 return Insets(-top_, -left_, -bottom_, -right_);
113 int left_; variable