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

1 2 3 4 5 6 7

  /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/ui/
keymaps.c 2 * 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_KEYCODE)
    [all...]
keymaps.h 2 * QEMU keysym to keycode conversion using rdesktop keymaps
32 int keysym; member in struct:__anon34853
46 int keysym; member in struct:__anon34854::__anon34855
56 int keysym2scancode(void *kbd_layout, int keysym);
58 int keysym_is_numlock(void *kbd_layout, int keysym);
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/ui/events/x/
keysym_to_unicode.h 12 // Returns a Unicode character corresponding to the given |keysym|. If the
13 // |keysym| doesn't represent a printable character, returns zero. We don't
16 uint16_t GetUnicodeCharacterFromXKeySym(unsigned long 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...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-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.11-4.8/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/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...]
  /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/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/docs/man3/
SDL_keysym.3 3 SDL_keysym \- Keysym structure
21 SDL virtual keysym
40 if(event\&.key\&.keysym\&.sym==SDLK_LEFT)
56 if ( (keysym\&.unicode & 0xFF80) == 0 ) {
57 ch = keysym\&.unicode & 0x7F;
SDL_GetKeyName.3 3 SDL_GetKeyName \- Get the name of an SDL virtual keysym
SDL_KeyboardEvent.3 10 SDL_keysym 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/svga/
SDL_svgaevents.c 43 /* 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)
338 /* Set the keysym information */
339 keysym->scancode = scancode
    [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/qemu/distrib/sdl-1.2.15/src/video/directfb/
SDL_DirectFB_events.c 41 /* 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)
193 /* Set the keysym information */
194 keysym->scancode = ev->key_id;
195 keysym->mod = KMOD_NONE; /* FIXME */
196 keysym->unicode = (DFB_KEY_TYPE (ev->key_symbol) == DIKT_UNICODE) ? ev->key_symbol : 0
    [all...]
  /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...]
  /external/qemu/distrib/sdl-1.2.15/src/video/ggi/
SDL_ggievents.c 43 /* 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)
251 /* Set the keysym information */
252 keysym->scancode = ev->key.button;
253 keysym->sym = keymap[ev->key.button];
254 keysym->mod = KMOD_NONE
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/vgl/
SDL_vglevents.c 40 /* 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)
270 /* Set the keysym information */
271 keysym->scancode = scancode;
272 keysym->sym = keymap[scancode];
273 keysym->mod = KMOD_NONE
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
AutoCompleteWindow.py 259 keysym = event.keysym
264 if keysym != "Tab":
266 if (len(keysym) == 1 or keysym in ("underscore", "BackSpace")
267 or (self.mode == COMPLETE_FILES and keysym in
271 if len(keysym) == 1:
272 self._change_start(self.start + keysym)
273 elif keysym == "underscore":
275 elif keysym == "period"
    [all...]

Completed in 2116 milliseconds

1 2 3 4 5 6 7