Searched defs:motion (Results 1 - 9 of 9) sorted by last modified time

/external/webkit/Source/WebKit/android/jni/
H A DDeviceMotionAndOrientationManager.cpp54 void DeviceMotionAndOrientationManager::setMockMotion(PassRefPtr<DeviceMotionData> motion) argument
59 void DeviceMotionAndOrientationManager::onMotionChange(PassRefPtr<DeviceMotionData> motion) argument
62 static_cast<DeviceMotionClientImpl*>(m_motionClient.get())->onMotionChange(motion);
137 RefPtr<DeviceMotionData> motion = DeviceMotionData::create(0, accelerationIncludingGravity.release(), 0, canProvideInterval, interval); local
138 getWebViewCore(env, webViewCoreObject)->deviceMotionAndOrientationManager()->onMotionChange(motion.release());
H A DDeviceMotionClientImpl.cpp118 void DeviceMotionClientImpl::onMotionChange(PassRefPtr<DeviceMotionData> motion) argument
120 m_lastMotion = motion;
/external/webkit/Source/WebCore/platform/gtk/
H A DPlatformMouseEventGtk.cpp78 PlatformMouseEvent::PlatformMouseEvent(GdkEventMotion* motion) argument
80 m_timestamp = motion->time;
81 m_position = IntPoint((int)motion->x, (int)motion->y);
82 m_globalPosition = IntPoint((int)motion->x_root, (int)motion->y_root);
83 m_shiftKey = motion->state & GDK_SHIFT_MASK;
84 m_ctrlKey = motion->state & GDK_CONTROL_MASK;
85 m_altKey = motion->state & GDK_MOD1_MASK;
86 m_metaKey = motion
[all...]
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_events.h60 SDL_JOYAXISMOTION, /**< Joystick axis motion */
61 SDL_JOYBALLMOTION, /**< Joystick trackball motion */
133 /** Mouse motion event structure */
139 Sint16 xrel; /**< The relative motion in the X direction */
140 Sint16 yrel; /**< The relative motion in the Y direction */
152 /** Joystick axis motion event structure */
160 /** Joystick trackball motion event structure */
165 Sint16 xrel; /**< The relative motion in the X direction */
166 Sint16 yrel; /**< The relative motion in the Y direction */
231 SDL_MouseMotionEvent motion; member in union:SDL_Event
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/Xv/
H A DXv.c766 Bool motion,
785 req->motion = motion;
763 XvQueryBestSize( Display *dpy, XvPortID port, Bool motion, unsigned int vid_w, unsigned int vid_h, unsigned int drw_w, unsigned int drw_h, unsigned int *p_actual_width, unsigned int *p_actual_height ) argument
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
H A DXvproto.h344 CARD8 motion; member in struct:__anon11185
/external/kernel-headers/original/linux/
H A Dqic117.h112 unused, mode, motion, report enumerator in enum:__anon7702
129 /* 1*/ {"soft reset", 0x00, 0x00, motion, 1, required},\
131 /* 3*/ {"pause", 0x36, 0x24, motion, 1, required},\
132 /* 4*/ {"micro step pause", 0x36, 0x24, motion, 1, required},\
138 /*10*/ {"logical forward", 0x37, 0x25, motion, 0, required},\
139 /*11*/ {"physical reverse", 0x17, 0x05, motion, 0, required},\
140 /*12*/ {"physical forward", 0x17, 0x05, motion, 0, required},\
141 /*13*/ {"seek head to track", 0x37, 0x25, motion, 0, required},\
142 /*14*/ {"seek load point", 0x17, 0x05, motion, 1, required},\
144 /*16*/ {"write reference burst", 0x1f, 0x05, motion,
[all...]
/external/chromium/chrome/browser/ui/
H A Dbrowser.cc3021 TabContents* source, const gfx::Point& location, bool motion) {
3026 GetStatusBubble()->MouseMoved(location, !motion);
3027 if (!motion)
3020 ContentsMouseEvent( TabContents* source, const gfx::Point& location, bool motion) argument
/external/chromium/chrome/browser/ui/gtk/
H A Dmenu_bar_helper.cc28 bool MotionIsOverMenu(GtkWidget* menu, GdkEventMotion* motion) { argument
29 if (motion->x >= 0 && motion->y >= 0 &&
30 motion->x < menu->allocation.width &&
31 motion->y < menu->allocation.height) {
89 signal_handlers_->Connect(menu, "motion-notify-event",
96 signal_handlers_->Connect(submenus_[i], "motion-notify-event",
102 GdkEventMotion* motion) {
104 if (MotionIsOverMenu(menu, motion))
101 OnMenuMotionNotify(GtkWidget* menu, GdkEventMotion* motion) argument

Completed in 276 milliseconds