Lines Matching refs:insets
51 bool operator==(const InsetsF& insets) const {
52 return top_ == insets.top_ && left_ == insets.left_ &&
53 bottom_ == insets.bottom_ && right_ == insets.right_;
56 bool operator!=(const InsetsF& insets) const {
57 return !(*this == insets);
60 void operator+=(const InsetsF& insets) {
61 top_ += insets.top_;
62 left_ += insets.left_;
63 bottom_ += insets.bottom_;
64 right_ += insets.right_;
67 void operator-=(const InsetsF& insets) {
68 top_ -= insets.top_;
69 left_ -= insets.left_;
70 bottom_ -= insets.bottom_;
71 right_ -= insets.right_;