Home | History | Annotate | Download | only in vda

Lines Matching refs:size_

28   Rect() : x_(0), y_(0), size_(0, 0) {}
29 Rect(int width, int height) : x_(0), y_(0), size_(width, height) {}
31 : x_(x), y_(y), size_(width, height) {}
32 explicit Rect(const Size& size) : x_(0), y_(0), size_(size) {}
40 int width() const { return size_.width(); }
41 void set_width(int width) { size_.set_width(width); }
43 int height() const { return size_.height(); }
44 void set_height(int height) { size_.set_height(height); }
46 const Size& size() const { return size_; }
63 bool IsEmpty() const { return size_.IsEmpty(); }
79 Size size_;