Home | History | Annotate | Download | only in public

Lines Matching refs:height

48     int height;
50 bool isEmpty() const { return width <= 0 || height <= 0; }
56 , height(0)
60 WebRect(int x, int y, int width, int height)
64 , height(height)
73 , height(r.height())
82 height = r.height();
88 return WebCore::IntRect(x, y, width, height);
95 , height(r.height())
104 height = r.height();
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;