Searched defs:mouse (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/tools/site_compare/drivers/
H A D__init__.py12 mouse = __import__(platform_dir+".mouse", globals(), locals(), ['']) variable
/external/chromium_org/tools/site_compare/scrapers/chrome/
H A Dchromebase.py12 from drivers import mouse namespace
79 mouse.ClickInWindow(address_bar)
148 mouse.ClickInWindow(address_bar)
/external/chromium_org/remoting/protocol/
H A Dinput_event_tracker.cc43 MouseEvent mouse; local
47 mouse.set_x(mouse_pos_.x());
48 mouse.set_y(mouse_pos_.y());
50 mouse.set_button((MouseEvent::MouseButton)i);
51 mouse.set_button_down(false);
52 input_stub_->InjectMouseEvent(mouse);
/external/chromium_org/tools/site_compare/scrapers/firefox/
H A Dfirefox2.py13 from drivers import mouse namespace
104 mouse.ClickInWindow(wnd)
106 mouse.ClickInWindow(wnd, (30, 115))
142 mouse.ClickInWindow(wnd)
187 mouse.ClickInWindow(wnd)
189 mouse.ClickInWindow(wnd, (30, 115))
205 mouse.ClickInWindow(wnd)
/external/chromium_org/tools/site_compare/scrapers/ie/
H A Die7.py13 from drivers import mouse namespace
99 mouse.DoubleClickInWindow(address_bar)
160 mouse.DoubleClickInWindow(address_bar)
/external/chromium_org/tools/site_compare/commands/
H A Dtimeload.py19 import drivers # Functions for driving keyboard/mouse/windows, OS-specific namespace
H A Dcompare2.py17 import drivers # Functions for driving keyboard/mouse/windows, OS-specific namespace
/external/qemu/distrib/sdl-1.2.15/src/video/windib/
H A DSDL_dibevents.c331 POINT mouse; local
333 if ( !GetCursorPos(&mouse) && !GetLastStylusPos(&mouse) ) return;
335 if ( !GetCursorPos(&mouse) ) return;
344 mouse.x -= center.x;
345 mouse.y -= center.y;
346 if ( mouse.x || mouse.y ) {
348 posted = SDL_PrivateMouseMotion(0, 1, (Sint16)mouse.x, (Sint16)mouse
[all...]
/external/qemu/
H A Dinput.c228 QDict *mouse; local
231 mouse = qobject_to_qdict(data);
233 (qdict_get_bool(mouse, "current") ? '*' : ' '),
234 qdict_get_int(mouse, "index"), qdict_get_str(mouse, "name"),
235 qdict_get_bool(mouse, "absolute") ? " (absolute)" : "");
244 monitor_printf(mon, "No mouse devices connected\n");
289 monitor_printf(mon, "No mouse devices connected\n");
/external/chromium_org/tools/site_compare/
H A Dsite_compare.py22 import drivers # Functions for driving keyboard/mouse/windows, OS-specific namespace
55 of mouse clicks, etc. Possibly on a per-browser, per-URL, or
/external/chromium_org/content/renderer/
H A Drender_widget_fullscreen_pepper.cc70 WebMouseEvent mouse; local
74 mouse.type = WebInputEvent::MouseDown;
78 mouse.type = WebInputEvent::MouseMove;
87 mouse.type = WebInputEvent::MouseUp;
90 return mouse;
93 mouse.type = WebInputEvent::MouseUp;
100 if (mouse.type == WebInputEvent::Undefined)
101 return mouse;
103 mouse.timeStampSeconds = gesture.timeStampSeconds;
104 mouse
216 WebMouseEvent mouse; local
243 WebMouseEvent mouse = WebMouseEventFromGestureEvent(*gesture_event); local
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/input/
H A DInputManager.java57 * or a mouse axis. A mapping represents a link onto one or several triggers,
87 private final MouseInput mouse; field in class:InputManager
125 * @param mouse
131 public InputManager(MouseInput mouse, KeyInput keys, JoyInput joystick, TouchInput touch) { argument
132 if (keys == null || mouse == null) {
137 this.mouse = mouse;
142 mouse.setInputListener(this);
627 * Returns whether the mouse cursor is visible or not.
631 * @return whether the mouse curso
[all...]
/external/qemu/hw/
H A Dpckbd.c37 #define KBD_CCMD_MOUSE_DISABLE 0xA7 /* Disable mouse interface */
38 #define KBD_CCMD_MOUSE_ENABLE 0xA8 /* Enable mouse interface */
50 #define KBD_CCMD_WRITE_MOUSE 0xD4 /* Write the following byte to the mouse */
86 #define KBD_MODE_DISABLE_MOUSE 0x20 /* Disable mouse interface */
122 void *mouse; member in struct:KBDState
194 ps2_queue(s->mouse, b);
283 val = ps2_read_data(s->mouse);
326 ps2_write_mouse(s->mouse, val);
380 s->mouse = ps2_mouse_init(kbd_update_aux_irq, s);
383 vmmouse_init(s->mouse);
[all...]
/external/chromium_org/third_party/WebKit/Source/testing/runner/
H A DTestPlugin.cpp121 const WebMouseEvent& mouse = static_cast<const WebMouseEvent&>(event); local
123 snprintf(buffer, sizeof(buffer), "* %d, %d\n", mouse.x, mouse.y);
/external/qemu-pc-bios/bochs/
H A Dbochs.h446 bx_bool mouse; member in struct:__anon25155
/external/chromium_org/ui/views/widget/
H A Dwidget_unittest.cc49 // A widget that assumes mouse capture always works. It won't on Aura in
86 // A view that always processes all mouse events.
269 // initiates a nested message-loop when it receives a mouse-press event.
300 // receives a mouse-release event.
516 // Tests mouse move outside of the window into the "resize controller" and back
1181 // Checks that if a mouse-press triggers a capture on a different widget (which
1182 // consumes the mouse-release event), then the target of the press does not have
1189 // The test sends a mouse-press event to |first|, and posts a task to send a
1229 MouseView* mouse = new MouseView; local
1230 mouse
[all...]
/external/kernel-headers/original/asm-mips/ip32/
H A Dmace.h246 struct mace_ps2port mouse; member in struct:mace_ps2
/external/chromium_org/third_party/npapi/bindings/
H A Dnpapi.h677 } mouse; member in union:_NPCocoaEvent::__anon12941
H A Dnpapi_extensions.h124 NPMouseEvent mouse; member in union:_NPPepperEvent::__anon12950

Completed in 427 milliseconds