Lines Matching refs:mInputDevice
656 private InputDevice mInputDevice; field in GameView.Ship
793 null != mInputDevice) { in getVibrator()
794 return mInputDevice.getVibrator(); in getVibrator()
827 if (null == mInputDevice) { in processJoystickInput()
828 mInputDevice = event.getDevice(); in processJoystickInput()
830 float x = getCenteredAxis(event, mInputDevice, MotionEvent.AXIS_X, historyPos); in processJoystickInput()
832 x = getCenteredAxis(event, mInputDevice, MotionEvent.AXIS_HAT_X, historyPos); in processJoystickInput()
835 x = getCenteredAxis(event, mInputDevice, MotionEvent.AXIS_Z, historyPos); in processJoystickInput()
838 float y = getCenteredAxis(event, mInputDevice, MotionEvent.AXIS_Y, historyPos); in processJoystickInput()
840 y = getCenteredAxis(event, mInputDevice, MotionEvent.AXIS_HAT_Y, historyPos); in processJoystickInput()
843 y = getCenteredAxis(event, mInputDevice, MotionEvent.AXIS_RZ, historyPos); in processJoystickInput()
872 mInputDevice = dev;