HomeSort by relevance Sort by last modified time
    Searched refs:numkeys (Results 1 - 6 of 6) sorted by null

  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_keyboard.h 65 * \param numkeys if non-NULL, receives the length of the returned array.
77 extern DECLSPEC const Uint8 *SDLCALL SDL_GetKeyboardState(int *numkeys);
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_keyboard.h 65 * \param numkeys if non-NULL, receives the length of the returned array.
77 extern DECLSPEC const Uint8 *SDLCALL SDL_GetKeyboardState(int *numkeys);
  /prebuilts/misc/windows/sdl2/include/
SDL_keyboard.h 65 * \param numkeys if non-NULL, receives the length of the returned array.
77 extern DECLSPEC const Uint8 *SDLCALL SDL_GetKeyboardState(int *numkeys);
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_keyboard.h 65 * \param numkeys if non-NULL, receives the length of the returned array.
77 extern DECLSPEC const Uint8 *SDLCALL SDL_GetKeyboardState(int *numkeys);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ACBTree.h 52 NSInteger numkeys; /* number of active entries */ variable
68 @property (assign) NSInteger numkeys; variable
  /prebuilts/misc/windows/sdl2/test/
testautomation_keyboard.c 17 * @brief Check call to SDL_GetKeyboardState with and without numkeys reference.
24 int numkeys; local
27 /* Case where numkeys pointer is NULL */
32 /* Case where numkeys pointer is not NULL */
33 numkeys = -1;
34 state = (Uint8 *)SDL_GetKeyboardState(&numkeys);
35 SDLTest_AssertPass("Call to SDL_GetKeyboardState(&numkeys)");
37 SDLTest_AssertCheck(numkeys >= 0, "Validate that value of numkeys is >= 0, got: %i", numkeys);
    [all...]

Completed in 1904 milliseconds