Home | History | Annotate | Download | only in vda

Lines Matching refs:size_

26   Rect() : x_(0), y_(0), size_(0, 0) {}
27 Rect(int width, int height) : x_(0), y_(0), size_(width, height) {}
29 : x_(x), y_(y), size_(width, height) {}
30 explicit Rect(const Size& size) : x_(0), y_(0), size_(size) {}
38 int width() const { return size_.width(); }
39 void set_width(int width) { size_.set_width(width); }
41 int height() const { return size_.height(); }
42 void set_height(int height) { size_.set_height(height); }
44 const Size& size() const { return size_; }
61 bool IsEmpty() const { return size_.IsEmpty(); }
77 Size size_;