Home | History | Annotate | Download | only in public

Lines Matching full:width

47     int width;
50 bool isEmpty() const { return width <= 0 || height <= 0; }
55 , width(0)
60 WebRect(int x, int y, int width, int height)
63 , width(width)
72 , width(r.width())
81 width = r.width();
88 return WebCore::IntRect(x, y, width, height);
94 , width(r.width())
103 width = r.width();
110 return gfx::Rect(x, y, width, height);
117 return a.x == b.x && a.y == b.y && a.width == b.width && a.height == b.height;