HomeSort by relevance Sort by last modified time
    Searched defs:right_bottom (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/win8/metro_driver/ime/
text_service.cc 403 POINT right_bottom = { bounds.right, bounds.bottom }; local
405 ClientToScreen(window_handle_, &right_bottom);
409 right_bottom.x,
410 right_bottom.y,
423 POINT right_bottom = { bounds.right, bounds.bottom }; variable
425 ClientToScreen(window_handle_, &right_bottom);
426 SetRect(rect, left_top.x, left_top.y, right_bottom.x, right_bottom.y);
text_store.cc 194 POINT right_bottom = {client_rect.right, client_rect.bottom}; local
197 if (!ClientToScreen(window_handle_, &right_bottom))
202 rect->right = right_bottom.x;
203 rect->bottom = right_bottom.y;

Completed in 39 milliseconds