Lines Matching refs:insets
60 bool operator==(const Insets& insets) const {
61 return top_ == insets.top_ && left_ == insets.left_ &&
62 bottom_ == insets.bottom_ && right_ == insets.right_;
65 bool operator!=(const Insets& insets) const {
66 return !(*this == insets);
69 void operator+=(const Insets& insets) {
70 top_ += insets.top_;
71 left_ += insets.left_;
72 bottom_ += insets.bottom_;
73 right_ += insets.right_;
76 void operator-=(const Insets& insets) {
77 top_ -= insets.top_;
78 left_ -= insets.left_;
79 bottom_ -= insets.bottom_;
80 right_ -= insets.right_;