Home
last modified time | relevance | path

Searched refs:mouse_pos (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/ui/views/corewm/
Dtooltip_aura.cc152 void TooltipAura::SetTooltipBounds(const gfx::Point& mouse_pos, in SetTooltipBounds() argument
154 gfx::Rect tooltip_rect(mouse_pos, tooltip_size); in SetTooltipBounds()
157 gfx::Rect display_bounds(screen->GetDisplayNearestPoint(mouse_pos).bounds()); in SetTooltipBounds()
169 tooltip_rect.set_y(mouse_pos.y() - tooltip_size.height()); in SetTooltipBounds()
Dtooltip_aura.h45 void SetTooltipBounds(const gfx::Point& mouse_pos,
/external/chromium_org/remoting/host/
Dremote_input_filter.cc35 const webrtc::DesktopVector& mouse_pos) { in LocalMouseMoved() argument
43 !mouse_pos.equals(*found_position)) { in LocalMouseMoved()
Dremote_input_filter.h30 void LocalMouseMoved(const webrtc::DesktopVector& mouse_pos);
/external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
DSDL_sysmouse.c189 POINT mouse_pos; in WIN_ShowWMCursor() local
201 GetCursorPos(&mouse_pos); in WIN_ShowWMCursor()
202 if ( PtInRect(&SDL_bounds, mouse_pos) ) { in WIN_ShowWMCursor()
/external/qemu/distrib/sdl-1.2.15/src/video/windx5/
DSDL_dx5events.c380 POINT mouse_pos; in handle_mouse() local
385 GetCursorPos(&mouse_pos); in handle_mouse()
386 ScreenToClient(SDL_Window, &mouse_pos); in handle_mouse()
387 post_mouse_motion( 0, (Sint16)mouse_pos.x, (Sint16)mouse_pos.y); in handle_mouse()
/external/chromium_org/chrome/browser/ui/cocoa/
Dstatus_bubble_mac.h124 void SetFrameAvoidingMouse(NSRect window_frame, const gfx::Point& mouse_pos);
Dstatus_bubble_mac.mm311 NSRect window_frame, const gfx::Point& mouse_pos) {
329 gfx::Point relative_pos(mouse_pos.x() - NSMaxX(window_frame),
330 mouse_pos.y() - NSMaxY(window_frame));
/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/earth/
Dearth.cc752 PP_Point mouse_pos = mouse.GetPosition(); in HandleInputEvent() local
753 float delta_x = static_cast<float>(mouse_pos.x - last_mouse_pos_.x); in HandleInputEvent()
754 float delta_y = static_cast<float>(mouse_pos.y - last_mouse_pos_.y); in HandleInputEvent()
759 last_mouse_pos_ = mouse_pos; in HandleInputEvent()
/external/chromium_org/pdf/
Dinstance.h334 PP_CursorType_Dev CalculateAutoscroll(const pp::Point& mouse_pos);
Dinstance.cc2678 PP_CursorType_Dev Instance::CalculateAutoscroll(const pp::Point& mouse_pos) { argument
2680 if (autoscroll_rect_.Contains(mouse_pos)) {
2687 pp::Point rel_pos = mouse_pos - autoscroll_rect_.CenterPoint();
/external/chromium_org/content/shell/renderer/test_runner/
Devent_sender.cc1770 WebPoint mouse_pos(static_cast<int>(x), static_cast<int>(y)); in MouseMoveTo()
1780 saved_event.pos = mouse_pos; in MouseMoveTo()
1787 mouse_pos, in MouseMoveTo()