HomeSort by relevance Sort by last modified time
    Searched refs:left_top (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/native_client_sdk/src/examples/api/mouse_lock/
mouse_lock.cc 252 pp::Point left_top(std::max(0, center_x - region_of_interest_radius),
257 for (int y = left_top.y(); y < right_bottom.y(); ++y) {
258 for (int x = left_top.x(); x < right_bottom.x(); ++x) {
305 pp::Point left_top(std::max(0, center_x - abs_mouse_x),
310 for (int y = left_top.y(); y < right_bottom.y(); ++y) {
311 for (int x = left_top.x(); x < right_bottom.x(); ++x) {
  /external/chromium_org/win8/metro_driver/ime/
text_service.cc 402 POINT left_top = { bounds.left, bounds.top }; local
404 ClientToScreen(window_handle_, &left_top);
407 left_top.x,
408 left_top.y,
422 POINT left_top = { bounds.left, bounds.top }; variable
424 ClientToScreen(window_handle_, &left_top);
426 SetRect(rect, left_top.x, left_top.y, right_bottom.x, right_bottom.y);
text_store.cc 193 POINT left_top = {client_rect.left, client_rect.top};
195 if (!ClientToScreen(window_handle_, &left_top))
200 rect->left = left_top.x;
201 rect->top = left_top.y;
  /external/chromium_org/ash/wm/
window_manager_unittest.cc 346 gfx::Point left_top = w1->bounds().origin(); local
347 aura::Window::ConvertPointToTarget(w1->parent(), root_window, &left_top);
348 left_top.Offset(1, 1);
349 generator.MoveMouseTo(left_top);

Completed in 325 milliseconds