/external/chromium_org/third_party/skia/include/views/unix/ |
keysym2ucs.h | 9 * This module converts keysym values into the corresponding ISO 10646-1 15 long keysym2ucs(KeySym keysym);
|
XkeysToSkKeys.h | 9 #include "X11/keysym.h" 16 SkKey XKeyToSkKey(KeySym keysym) { 17 switch (keysym) {
|
/external/skia/include/views/unix/ |
keysym2ucs.h | 9 * This module converts keysym values into the corresponding ISO 10646-1 15 long keysym2ucs(KeySym keysym);
|
XkeysToSkKeys.h | 9 #include "X11/keysym.h" 16 SkKey XKeyToSkKey(KeySym keysym) { 17 switch (keysym) {
|
/external/qemu/ |
keymaps.h | 2 * QEMU keysym to keycode conversion using rdesktop keymaps 32 int keysym; member in struct:__anon28193 46 int keysym; member in struct:__anon28194::__anon28195 56 int keysym2scancode(void *kbd_layout, int keysym); 58 int keysym_is_numlock(void *kbd_layout, int keysym);
|
keymaps.c | 2 * QEMU keysym to keycode conversion using rdesktop keymaps 34 return p->keysym; 121 int keysym; local 123 keysym = get_keysym(table, line); 124 if (keysym == 0) { 125 // fprintf(stderr, "Warning: unknown keysym %s\n", line); 133 add_to_key_range(&k->numlock_range, keysym); 134 //fprintf(stderr, "keypad keysym %04x keycode %d\n", keysym, keycode); 139 if (keysym < MAX_NORMAL_KEYCODE) [all...] |
curses.c | 166 int chr, nextchr, keysym, keycode; local 236 keysym = keycode2keysym[keycode & KEY_MASK]; 237 if (keysym == -1) 238 keysym = chr; 241 keycode |= keysym2scancode(kbd_layout, keysym); 266 keysym = curses2keysym[chr]; 267 if (keysym == -1) 268 keysym = chr; 270 kbd_put_keysym(keysym); 304 int i, keycode, keysym; local [all...] |
/external/chromium_org/third_party/WebKit/Source/testing/runner/ |
KeyCodeMapping.cpp | 37 int NativeKeyCodeForWindowsKeyCode(int keysym) 172 if (keysym <= 127) 173 return asciiToKeyCode[keysym]; 175 switch (keysym) { 224 return 67 + (keysym - VKEY_F1); 244 return keysym - keysym;
|
/external/qemu/distrib/sdl-1.2.15/src/video/dga/ |
SDL_dgaevents.c | 80 SDL_keysym keysym; local 89 /* Get the translated SDL virtual keysym */ 90 keysym.scancode = keycode; 91 keysym.sym = X11_TranslateKeycode(DGA_Display, keycode); 92 keysym.mod = KMOD_NONE; 93 keysym.unicode = 0; 107 keysym.unicode = (Uint8)keybuf[0]; 110 posted = SDL_PrivateKeyboard(SDL_PRESSED, &keysym); 116 SDL_keysym keysym; local 125 /* Get the translated SDL virtual keysym */ [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/caca/ |
SDL_cacaevents.c | 45 SDL_keysym keysym; local 70 keysym.scancode = key; 71 keysym.sym = key; 72 keysym.mod = KMOD_NONE; 73 keysym.unicode = 0; 75 keysym.unicode = key; 77 posted += SDL_PrivateKeyboard((event & CACA_EVENT_KEY_PRESS) ? SDL_PRESSED : SDL_RELEASED, &keysym);
|
/external/qemu/distrib/sdl-1.2.15/src/video/nds/ |
SDL_ndsevents.c | 40 SDL_keysym keysym; local 41 keysym.mod=KMOD_NONE; 44 keysym.scancode=i; 45 keysym.sym=keymap[i]; 50 SDL_PrivateKeyboard(SDL_RELEASED, &keysym); 56 SDL_PrivateKeyboard(SDL_PRESSED, &keysym);
|
/external/qemu/distrib/sdl-1.2.15/src/video/nanox/ |
SDL_nxevents.c | 35 // The translation tables from a nanox keysym to a SDL keysym 112 SDL_keysym * NX_TranslateKey (GR_EVENT_KEYSTROKE * keystroke, SDL_keysym * keysym) 118 keysym -> scancode = keystroke -> scancode ; 119 keysym -> sym = SDLK_UNKNOWN ; 122 keysym -> sym = NX_NONASCII_keymap [ch & 0xFF] ; 124 keysym -> sym = ch & 0x7F ; 127 keysym -> mod = KMOD_NONE ; 134 keysym -> mod |= KMOD_LSHIFT ; 136 keysym -> mod |= KMOD_RSHIFT 281 SDL_keysym keysym ; local 291 SDL_keysym keysym ; local [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/ |
Xutil.h | 56 #include <X11/keysym.h> 231 * Keysym macros, used on Keysyms to test for classes of symbols 233 #define IsKeypadKey(keysym) \ 234 (((KeySym)(keysym) >= XK_KP_Space) && ((KeySym)(keysym) <= XK_KP_Equal)) 236 #define IsPrivateKeypadKey(keysym) \ 237 (((KeySym)(keysym) >= 0x11000000) && ((KeySym)(keysym) <= 0x1100FFFF) [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/ |
Xutil.h | 56 #include <X11/keysym.h> 231 * Keysym macros, used on Keysyms to test for classes of symbols 233 #define IsKeypadKey(keysym) \ 234 (((KeySym)(keysym) >= XK_KP_Space) && ((KeySym)(keysym) <= XK_KP_Equal)) 236 #define IsPrivateKeypadKey(keysym) \ 237 (((KeySym)(keysym) >= 0x11000000) && ((KeySym)(keysym) <= 0x1100FFFF) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/ |
Xutil.h | 56 #include <X11/keysym.h> 231 * Keysym macros, used on Keysyms to test for classes of symbols 233 #define IsKeypadKey(keysym) \ 234 (((KeySym)(keysym) >= XK_KP_Space) && ((KeySym)(keysym) <= XK_KP_Equal)) 236 #define IsPrivateKeypadKey(keysym) \ 237 (((KeySym)(keysym) >= 0x11000000) && ((KeySym)(keysym) <= 0x1100FFFF) [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/aalib/ |
SDL_aaevents.c | 36 /* The translation tables from a console scancode to a SDL keysym */ 39 static SDL_keysym *TranslateKey(int scancode, SDL_keysym *keysym); 47 SDL_keysym keysym; local 109 posted += SDL_PrivateKeyboard(SDL_PRESSED, TranslateKey(evt, &keysym)); 114 posted += SDL_PrivateKeyboard(SDL_RELEASED, TranslateKey(evt, &keysym)); 184 static SDL_keysym *TranslateKey(int scancode, SDL_keysym *keysym) 190 /* Set the keysym information */ 191 keysym->scancode = scancode; 192 keysym->sym = keymap[scancode]; 193 keysym->mod = KMOD_NONE [all...] |
/external/chromium_org/ui/events/keycodes/ |
keyboard_code_conversion_x.h | 18 EVENTS_BASE_EXPORT KeyboardCode KeyboardCodeFromXKeysym(unsigned int keysym); 25 // Converts a KeyboardCode into an X KeySym. 29 // Converts an X keycode into an X KeySym.
|
/external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/ |
SDL_atarievents_c.h | 49 SDL_keysym *SDL_Atari_TranslateKey(int scancode, SDL_keysym *keysym,
|
SDL_biosevents.c | 72 SDL_keysym keysym; local 91 SDL_Atari_TranslateKey(i, &keysym, SDL_TRUE)); 96 SDL_Atari_TranslateKey(i, &keysym, SDL_FALSE));
|
SDL_gemdosevents.c | 73 SDL_keysym keysym; local 92 SDL_Atari_TranslateKey(i, &keysym, SDL_TRUE)); 97 SDL_Atari_TranslateKey(i, &keysym, SDL_FALSE));
|
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/ |
SDL_epocevents.cpp | 27 static SDL_keysym *TranslateKey(_THIS, int scancode, SDL_keysym *keysym); 31 /* The translation tables from a console scancode to a SDL keysym */ 33 static SDL_keysym *TranslateKey(_THIS, int scancode, SDL_keysym *keysym); 250 SDL_keysym keysym; local 317 (void*)TranslateKey(_this, aWsEvent.Key()->iScanCode, &keysym); 321 switch((int)keysym.sym) { 335 posted += SDL_PrivateKeyboard(SDL_PRESSED, &keysym); 348 posted += SDL_PrivateKeyboard(SDL_RELEASED, TranslateKey(_this, aWsEvent.Key()->iScanCode, &keysym)); 440 static SDL_keysym *TranslateKey(_THIS, int scancode, SDL_keysym *keysym) 445 /* Set the keysym information */ [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/wscons/ |
SDL_wsconsevents.c | 98 static SDL_keysym *TranslateKey(int scancode, SDL_keysym *keysym) 100 keysym->scancode = scancode; 101 keysym->sym = SDLK_UNKNOWN; 102 keysym->mod = KMOD_NONE; 105 keysym->sym = keymap[scancode]; 107 if (keysym->sym == SDLK_UNKNOWN) 110 return keysym; 116 SDL_keysym keysym; local 125 TranslateKey(c, &keysym));
|
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA1/ |
SDL_epocevents.cpp | 53 /* The translation tables from a console scancode to a SDL keysym */ 55 static SDL_keysym *TranslateKey(_THIS, int scancode, SDL_keysym *keysym); 64 SDL_keysym keysym; local 131 (void*)TranslateKey(_this, aWsEvent.Key()->iScanCode, &keysym); 135 switch((int)keysym.sym) { 149 posted += SDL_PrivateKeyboard(SDL_PRESSED, &keysym); 162 posted += SDL_PrivateKeyboard(SDL_RELEASED, TranslateKey(_this, aWsEvent.Key()->iScanCode, &keysym)); 546 static SDL_keysym *TranslateKey(_THIS, int scancode, SDL_keysym *keysym) 551 /* Set the keysym information */ 553 keysym->scancode = scancode [all...] |
/sdk/emulator/opengl/tests/emulator_test_renderer/ |
main.cpp | 143 if (ev.key.keysym.sym == SDLK_q && 144 ev.key.keysym.mod & KMOD_META) { 148 injector->sendKeyDown(convert_keysym(ev.key.keysym.sym)); 150 if (ev.key.keysym.sym == SDLK_KP_MINUS) { 163 else if (ev.key.keysym.sym == SDLK_KP_PLUS) { 176 else if (ev.key.keysym.sym == SDLK_KP_MULTIPLY) { 180 else if (ev.key.keysym.sym == SDLK_KP_ENTER) { 185 injector->sendKeyUp(convert_keysym(ev.key.keysym.sym));
|
/external/chromium_org/content/browser/renderer_host/ |
web_input_event_aurax11.cc | 40 #include <X11/keysym.h> 66 // To support DOM3 'location' attribute, we need to lookup an X KeySym and 68 KeySym keysym = XK_VoidSymbol; local 69 XLookupString(event, NULL, 0, &keysym, NULL); 70 switch (keysym) {
|