Home | History | Annotate | Download | only in win

Lines Matching refs:bounds

135     /* [in] */ RECT bounds)
137 IntRect rect(bounds.left, bounds.top, bounds.right-bounds.left, bounds.bottom-bounds.top);
170 /* [retval][out] */ RECT* bounds)
172 if (!bounds)
175 bounds->left = rect.x();
176 bounds->right = rect.maxX();
177 bounds->top = rect.y();
178 bounds->bottom = rect.maxY();