Searched defs:vkey (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_tgsi.h77 struct svga_vs_compile_key vkey; member in struct:svga_compile_key
152 const struct svga_vs_compile_key *vkey );
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_tgsi.h77 struct svga_vs_compile_key vkey; member in struct:svga_compile_key
152 const struct svga_vs_compile_key *vkey );
/external/qemu/distrib/sdl-1.2.15/src/video/windib/
H A DSDL_dibevents.c54 static SDL_keysym *TranslateKey(WPARAM vkey, UINT scancode, SDL_keysym *keysym, int pressed);
541 static int SDL_MapVirtualKey(int scancode, int vkey) argument
549 switch(vkey) {
567 return vkey;
583 return mvke?mvke:vkey;
586 static SDL_keysym *TranslateKey(WPARAM vkey, UINT scancode, SDL_keysym *keysym, int pressed) argument
593 if ((vkey == VK_RETURN) && (scancode & 0x100)) {
598 keysym->sym = VK_keymap[SDL_MapVirtualKey(scancode, vkey)];
603 /* Uh oh, better hope the vkey is close enough.. */
604 if((keysym->sym == vkey) || (vke
[all...]
/external/valgrind/main/memcheck/tests/
H A Dunit_oset.c80 static Word wordCmp(void* vkey, void* velem) argument
82 return *(Word*)vkey - *(Word*)velem;
448 static Word blockCmp(const void* vkey, const void* velem) argument
450 Addr key = *(const Addr*)vkey;
/external/chromium_org/ui/aura/
H A Dremote_window_tree_host_win.cc356 void RemoteWindowTreeHostWin::OnKeyDown(uint32 vkey, argument
360 DispatchKeyboardMessage(ui::ET_KEY_PRESSED, vkey, repeat_count, scan_code,
364 void RemoteWindowTreeHostWin::OnKeyUp(uint32 vkey, argument
368 DispatchKeyboardMessage(ui::ET_KEY_RELEASED, vkey, repeat_count, scan_code,
485 uint32 vkey,
502 vkey, local
505 ui::KeyEvent event(static_cast<base::char16>(vkey),
506 ui::KeyboardCodeForWindowsKeyCode(vkey),
511 ui::KeyboardCodeForWindowsKeyCode(vkey),
484 DispatchKeyboardMessage(ui::EventType type, uint32 vkey, uint32 repeat_count, uint32 scan_code, uint32 flags, bool is_character) argument
/external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
H A DSDL_sysevents.c103 static int WINAPI ToUnicode9xME(UINT vkey, UINT scancode, const BYTE *keystate, LPWSTR wchars, int wsize, UINT flags);
844 static int WINAPI ToUnicode9xME(UINT vkey, UINT scancode, const BYTE *keystate, LPWSTR wchars, int wsize, UINT flags) argument
849 if (ToAsciiEx(vkey, scancode, (PBYTE) keystate, (WORD*)chars, 0, GetKeyboardLayout(0)) == 1) {
/external/qemu/distrib/sdl-1.2.15/src/video/windx5/
H A DSDL_dx5events.c907 UINT vkey; local
913 vkey = MapVirtualKey(scancode, 1);
915 /* Uh oh, better hope the vkey is close enough.. */
916 keysym->unicode = vkey;
921 if ((keystate[VK_NUMLOCK] & 1) && vkey >= VK_NUMPAD0 && vkey <= VK_NUMPAD9)
923 keysym->unicode = vkey - VK_NUMPAD0 + '0';
925 else if (SDL_ToUnicode(vkey, scancode, keystate, wchars, sizeof(wchars)/sizeof(wchars[0]), 0) > 0)
/external/qemu/distrib/sdl-1.2.15/src/video/os2fslib/
H A DSDL_os2fslib.c95 static SDL_keysym *TranslateKey(int vkey, int chcode, int scancode, SDL_keysym *keysym, int iPressed);
236 static SDL_keysym *TranslateKey(int vkey, int chcode, int scancode, SDL_keysym *keysym, int iPressed) argument
247 keysym->unicode = vkey;
253 if (vkey == VK_SHIFT)

Completed in 3662 milliseconds