HomeSort by relevance Sort by last modified time
    Searched full:joy (Results 1 - 25 of 40) sorted by null

1 2

  /external/qemu/distrib/sdl-1.2.15/src/joystick/bsd/
SDL_sysjoystick.c 132 BSDJOY_JOY /* joy(4) */
187 SDL_snprintf(s, SDL_arraysize(s), "/dev/joy%d", i);
254 SDL_SYS_JoystickOpen(SDL_Joystick *joy)
256 char *path = joynames[joy->index];
276 joy->hwdata = hw;
285 if (! SDL_strncmp(path, "/dev/joy", 8)) {
287 joy->naxes = 2;
288 joy->nbuttons = 2;
289 joy->nhats = 0;
290 joy->nballs = 0
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/input/
TestJoystick.java 26 for (Joystick joy : joysticks){
27 System.out.println(joy.toString());
36 inputManager.addMapping("Joy Left", new JoyAxisTrigger(0, 0, true));
37 inputManager.addMapping("Joy Right", new JoyAxisTrigger(0, 0, false));
38 inputManager.addMapping("Joy Down", new JoyAxisTrigger(0, 1, true));
39 inputManager.addMapping("Joy Up", new JoyAxisTrigger(0, 1, false));
40 inputManager.addListener(this, "Joy Left", "Joy Right", "Joy Down", "Joy Up")
    [all...]
  /external/qemu/distrib/sdl-1.2.15/docs/man3/
SDL_JoystickOpen.3 19 \f(CWSDL_Joystick *joy;
23 joy=SDL_JoystickOpen(0);
25 if(joy)
32 ", SDL_JoystickNumAxes(joy));
34 ", SDL_JoystickNumButtons(joy));
36 ", SDL_JoystickNumBalls(joy));
44 SDL_JoystickClose(joy);
SDL_JoystickGetBall.3 22 SDL_Joystick *joy;
27 if(SDL_JoystickGetBall(joy, 0, &delta_x, &delta_y)==-1)
  /external/qemu/distrib/sdl-1.2.15/docs/html/
sdljoystickopen.html 156 >SDL_Joystick *joy;
160 joy=SDL_JoystickOpen(0);
162 if(joy)
166 printf("Number of Axes: %d\n", SDL_JoystickNumAxes(joy));
167 printf("Number of Buttons: %d\n", SDL_JoystickNumButtons(joy));
168 printf("Number of Balls: %d\n", SDL_JoystickNumBalls(joy));
175 SDL_JoystickClose(joy);
sdljoystickgetball.html 172 SDL_Joystick *joy;
177 if(SDL_JoystickGetBall(joy, 0, &delta_x, &delta_y)==-1)
  /external/netperf/
netcpu_kstat10.c 131 /* happiness and joy, keep going */
134 /* happiness and joy, keep going. we could consider adding a
174 /* happiness and joy */
219 /* happiness and joy, keep going */
222 /* happiness and joy, keep going. we could consider adding a
246 /* happiness and joy */
433 in happiness and joy. raj 2005-01-28 */
netcpu_perfstat.c 88 /* happiness and joy, keep going */
170 /* happiness and joy, keep going */
205 /* happiness and joy, keep going */
netcpu_pstatnew.c 324 in happiness and joy. raj 2005-01-28 */
netserver.c 515 /* happiness and joy, keep going */
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/input/lwjgl/
JInputJoyInput.java 99 Joystick joy = new Joystick(inputManager, local
105 joysticks[joyIndex] = joy;
  /external/qemu/distrib/sdl-1.2.15/src/joystick/linux/
SDL_sysjoystick.c 84 {logical joy, logical axis},
85 {logical joy, logical hat},
86 {logical joy, logical ball},
87 {logical joy, logical button}
265 SDL_Joystick* joy; member in struct:__anon13328
811 SDL_joylist[joystick->index].joy = joystick;
864 logicaljoy = SDL_joylist[i].joy;
1000 JS_HandleEvents(SDL_joylist[i].joy);
1086 return EV_HandleEvents(SDL_joylist[i].joy);
1187 SDL_JoystickClose(SDL_joylist[i].joy);
    [all...]
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
locobasic.php 67 "INT", "JOY", "LEFT", "LEN", "LOG", "LOG10", "LOWER", "MAX", "MID",
sdlbasic.php 101 'getbuttonjoystick', 'xgetballjoystick', 'ygetballjoystick', 'joy',
  /external/ipsec-tools/
ChangeLog 234 by Joy Latten.
299 * src/racoon/: main.c, policy.h, security.c: From Joy Latten
362 * src/racoon/: ipsec_doi.c, security.c: From Joy Latten: fix a
465 * src/racoon/crypto_openssl.c: From Joy Latten: fix a memory leak
479 * src/racoon/: Makefile.am, doc/README.plainrsa: From Joy Latten:
491 src/racoon/remoteconf.c: From Joy Latten: Add support for SELinux
  /external/nist-sip/
AndroidManifest.xml 23 <application android:label="Sip Joy 3">
  /external/webkit/Source/WebCore/platform/graphics/mac/
SimpleFontDataMac.mm 194 // We tried, Times, Times New Roman, and the system font. No joy. We have to give up.
199 // We tried the requested font and the system font. No joy. We have to give up.
  /external/grub/
THANKS 68 Josip Rodin <joy@cibalia.gkvk.hr>
  /external/bluetooth/bluedroid/bta/include/
bta_hh_api.h 94 #define BTA_HH_DEVT_JOS 0x01 /* joy stick */
  /packages/apps/Email/tests/src/com/android/email/mail/transport/
MockTransport.java 392 // no joy - throw an exception
  /cts/tests/tests/text/src/android/text/cts/
EmojiConstants.java 667 0x1F602, // FACE WITH TEARS OF JOY
705 0x1F639, // CAT FACE WITH TEARS OF JOY
  /external/qemu/distrib/sdl-1.2.15/
README.MiNT 142 port[a|b]-[pad|joy?|lp|anpad]-* strings are mutually exclusives.
  /frameworks/base/docs/html/design/get-started/
principles.jd 14 <p>A beautiful surface, a carefully-placed animation, or a well-timed sound effect is a joy to
  /external/jmonkeyengine/engine/src/core/com/jme3/input/
InputManager.java 48 * received from the Key, Mouse and Joy Input implementations into an
    [all...]
  /external/webkit/Source/WebKit/mac/Plugins/
WebNetscapePluginPackage.mm 243 BOOL hasCFMHeader = memcmp([data bytes], "Joy!peff", 8) == 0;

Completed in 2321 milliseconds

1 2