Home | History | Annotate | Download | only in ime

Lines Matching refs:RECT

181 STDMETHODIMP TextStore::GetScreenExt(TsViewCookie view_cookie, RECT* rect) {
184 if (!rect)
187 // {0, 0, 0, 0} means that the document rect is not currently displayed.
188 SetRect(rect, 0, 0, 0, 0);
190 RECT client_rect = {};
200 rect->left = left_top.x;
201 rect->top = left_top.y;
202 rect->right = right_bottom.x;
203 rect->bottom = right_bottom.y;
288 RECT* rect,
290 if (!rect || !clipped)
303 // rect indicates a first character's one, and bottom right corner of rect
305 // We use RECT instead of gfx::Rect since left position may be bigger than
307 RECT result;
308 RECT tmp_rect;
355 *rect = result;