Searched defs:keysym (Results 1 - 25 of 53) sorted by relevance

123

/external/chromium_org/third_party/skia/include/views/unix/
H A DXkeysToSkKeys.h9 #include "X11/keysym.h"
16 SkKey XKeyToSkKey(KeySym keysym) { argument
17 switch (keysym) {
/external/skia/include/views/unix/
H A DXkeysToSkKeys.h9 #include "X11/keysym.h"
16 SkKey XKeyToSkKey(KeySym keysym) { argument
17 switch (keysym) {
/external/qemu/distrib/sdl-1.2.15/src/video/nds/
H A DSDL_ndsevents.c40 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/chromium_org/third_party/skia/src/views/unix/
H A Dkeysym2ucs.c2 * This module converts keysym values into the corresponding ISO 10646
5 * The array keysymtab[] contains pairs of X11 keysym values for graphical
7 * keysym2ucs() maps a keysym onto a Unicode value using a binary search,
8 * therefore keysymtab[] must remain SORTED by keysym value.
10 * The keysym -> UTF-8 conversion will hopefully one day be provided
15 * U-00FFFFFF by a keysym value in the range 0x01000000 to 0x01ffffff.
20 * U+ABCD you can directly use keysym 0x0100abcd.
40 unsigned short keysym; member in struct:codepair
818 long keysym2ucs(KeySym keysym) argument
825 if ((keysym >
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/caca/
H A DSDL_cacaevents.c45 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/skia/src/views/unix/
H A Dkeysym2ucs.c2 * This module converts keysym values into the corresponding ISO 10646
5 * The array keysymtab[] contains pairs of X11 keysym values for graphical
7 * keysym2ucs() maps a keysym onto a Unicode value using a binary search,
8 * therefore keysymtab[] must remain SORTED by keysym value.
10 * The keysym -> UTF-8 conversion will hopefully one day be provided
15 * U-00FFFFFF by a keysym value in the range 0x01000000 to 0x01ffffff.
20 * U+ABCD you can directly use keysym 0x0100abcd.
40 unsigned short keysym; member in struct:codepair
818 long keysym2ucs(KeySym keysym) argument
825 if ((keysym >
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/
H A DSDL_biosevents.c72 SDL_keysym keysym; local
91 SDL_Atari_TranslateKey(i, &keysym, SDL_TRUE));
96 SDL_Atari_TranslateKey(i, &keysym, SDL_FALSE));
H A DSDL_gemdosevents.c73 SDL_keysym keysym; local
92 SDL_Atari_TranslateKey(i, &keysym, SDL_TRUE));
97 SDL_Atari_TranslateKey(i, &keysym, SDL_FALSE));
H A DSDL_ikbdevents.c74 SDL_keysym keysym; local
82 SDL_Atari_TranslateKey(i, &keysym, SDL_TRUE));
89 SDL_Atari_TranslateKey(i, &keysym, SDL_FALSE));
H A DSDL_atarievents.c53 /* The translation tables from a console scancode to a SDL keysym */
214 SDL_keysym *SDL_Atari_TranslateKey(int scancode, SDL_keysym *keysym, argument
219 /* Set the keysym information */
220 keysym->scancode = scancode;
221 keysym->mod = KMOD_NONE;
222 keysym->sym = keymap[scancode];
223 keysym->unicode = 0;
225 if (keysym->sym == SDLK_UNKNOWN) {
226 keysym->sym = asciicode = keytab_normal[scancode];
230 keysym
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/dga/
H A DSDL_dgaevents.c80 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/directfb/
H A DSDL_DirectFB_events.c41 /* The translation tables from a DirectFB keycode to a SDL keysym */
43 static SDL_keysym *DirectFB_TranslateKey (DFBInputEvent *ev, SDL_keysym *keysym);
56 SDL_keysym keysym; local
69 posted += SDL_PrivateKeyboard(SDL_PRESSED, DirectFB_TranslateKey(&evt, &keysym));
72 posted += SDL_PrivateKeyboard(SDL_RELEASED, DirectFB_TranslateKey(&evt, &keysym));
191 static SDL_keysym *DirectFB_TranslateKey (DFBInputEvent *ev, SDL_keysym *keysym) argument
193 /* Set the keysym information */
194 keysym->scancode = ev->key_id;
195 keysym->mod = KMOD_NONE; /* FIXME */
196 keysym
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/nanox/
H A DSDL_nxevents.c35 // The translation tables from a nanox keysym to a SDL keysym
112 SDL_keysym * NX_TranslateKey (GR_EVENT_KEYSTROKE * keystroke, SDL_keysym * keysym) argument
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
281 SDL_keysym keysym ; local
291 SDL_keysym keysym ; local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/wscons/
H A DSDL_wsconsevents.c98 static SDL_keysym *TranslateKey(int scancode, SDL_keysym *keysym) argument
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/aalib/
H A DSDL_aaevents.c36 /* 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) argument
190 /* Set the keysym information */
191 keysym->scancode = scancode;
192 keysym->sym = keymap[scancode];
193 keysym
[all...]
/external/qemu/ui/
H A Dkeymaps.h2 * QEMU keysym to keycode conversion using rdesktop keymaps
32 int keysym; member in struct:__anon30249
46 int keysym; member in struct:__anon30250::__anon30251
56 int keysym2scancode(void *kbd_layout, int keysym);
58 int keysym_is_numlock(void *kbd_layout, int keysym);
H A Dkeymaps.c2 * QEMU keysym to keycode conversion using rdesktop keymaps
34 return p->keysym;
105 int keysym; local
107 keysym = get_keysym(table, line);
108 if (keysym == 0) {
109 // fprintf(stderr, "Warning: unknown keysym %s\n", line);
117 add_to_key_range(&k->numlock_range, keysym);
118 //fprintf(stderr, "keypad keysym %04x keycode %d\n", keysym, keycode);
123 if (keysym < MAX_NORMAL_KEYCOD
158 keysym2scancode(void *kbd_layout, int keysym) argument
190 keysym_is_numlock(void *kbd_layout, int keysym) argument
[all...]
/external/chromium_org/ui/aura/test/
H A Dui_controls_factory_aurax11.cc5 #include <X11/keysym.h>
205 KeySym keysym,
208 XKeysymToKeycode(gfx::GetXDisplay(), keysym);
215 KeySym keysym) {
218 XKeysymToKeycode(gfx::GetXDisplay(), keysym);
204 SetKeycodeAndSendThenMask(XEvent* xevent, KeySym keysym, unsigned int mask) argument
213 UnmaskAndSetKeycodeThenSend(XEvent* xevent, unsigned int mask, KeySym keysym) argument
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_sysevents.cc329 SDL_keysym keysym; local
330 keysym.scancode = key;
332 keysym.sym = keymap[key];
334 keysym.sym = SDLK_UNKNOWN;
339 keysym.mod = KMOD_NONE;
340 keysym.unicode = 0;
348 keysym.unicode = Translate2Unicode(bytes);
351 SDL_PrivateKeyboard(SDL_PRESSED, &keysym);
362 SDL_keysym keysym; local
363 keysym
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/dc/
H A DSDL_dcevents.c101 SDL_keysym keysym; local
122 keysym.sym = sdl_shift[i];
123 SDL_PrivateKeyboard(((state->shift_keys>>i)&1)?SDL_PRESSED:SDL_RELEASED,&keysym);
131 keysym.sym = key;
132 SDL_PrivateKeyboard(state->matrix[i]?SDL_PRESSED:SDL_RELEASED,&keysym);
/external/qemu/distrib/sdl-1.2.15/src/video/ggi/
H A DSDL_ggievents.c43 /* The translation tables from a GGI keycode to a SDL keysym */
45 static SDL_keysym *GGI_TranslateKey(ggi_event *ev, SDL_keysym *keysym);
66 SDL_keysym keysym; local
105 posted += SDL_PrivateKeyboard(SDL_PRESSED, GGI_TranslateKey(&ev, &keysym));
108 posted += SDL_PrivateKeyboard(SDL_RELEASED, GGI_TranslateKey(&ev, &keysym));
249 static SDL_keysym *GGI_TranslateKey(gii_event *ev, SDL_keysym *keysym) argument
251 /* Set the keysym information */
252 keysym->scancode = ev->key.button;
253 keysym->sym = keymap[ev->key.button];
254 keysym
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/svga/
H A DSDL_svgaevents.c43 /* The translation tables from a console scancode to a SDL keysym */
54 static SDL_keysym *TranslateKey(int scancode, SDL_keysym *keysym);
56 /* Ugh, we have to duplicate the kernel's keysym mapping code...
67 /* Load all the keysym mappings */
189 SDL_keysym keysym; local
193 TranslateKey(scancode, &keysym));
196 TranslateKey(scancode, &keysym));
336 static SDL_keysym *TranslateKey(int scancode, SDL_keysym *keysym) argument
338 /* Set the keysym information */
339 keysym
379 TranslateKey(int scancode, SDL_keysym *keysym) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
H A DSDL_epocevents.cpp27 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) argument
445 /* Set the keysym informatio
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/vgl/
H A DSDL_vglevents.c40 /* The translation tables from a console scancode to a SDL keysym */
44 static SDL_keysym *TranslateKey(int scancode, SDL_keysym *keysym);
51 /* Ugh, we have to duplicate the kernel's keysym mapping code...
74 SDL_keysym keysym; local
86 TranslateKey(scancode, &keysym));
268 static SDL_keysym *TranslateKey(int scancode, SDL_keysym *keysym) argument
270 /* Set the keysym information */
271 keysym->scancode = scancode;
272 keysym->sym = keymap[scancode];
273 keysym
[all...]
/external/chromium_org/chrome/test/chromedriver/
H A Dkeycode_text_conversion_x.cc8 #include <X11/keysym.h>
159 int keysym = XkbKeycodeToKeysym(display, key, 0, 0); local
161 found = keysym == XK_Alt_L || keysym == XK_Alt_R;
163 found = keysym == XK_Meta_L || keysym == XK_Meta_R;
165 found = keysym == XK_Num_Lock;

Completed in 389 milliseconds

123