/external/chromium_org/ui/base/ime/chromeos/ |
character_composer.cc | 374 // Converts a X keycode to a X keysym with no modifiers. 375 KeySym XKeyCodeToXKeySym(unsigned int keycode) { 421 KeySym keysym = NoSymbol; local 422 ::XLookupString(&xevent->xkey, NULL, 0, &keysym, NULL); 424 return FilterKeyPressInternal(keysym, xevent->xkey.keycode, event.flags());
|
/external/chromium_org/chrome/browser/ui/libgtk2ui/ |
x11_input_method_context_impl_gtk2.cc | 41 // Get a keysym and group. 42 KeySym keysym = NoSymbol; local 44 XLookupString(&xkey, NULL, 0, &keysym, NULL); 53 if (keyvals[i] == keysym) { 84 event->key.keyval = keysym;
|
/external/chromium_org/remoting/host/ |
local_input_monitor_linux.cc | 295 KeySym key_sym = XkbKeycodeToKeysym(display_, key_code, 0, 0);
|
/external/qemu/distrib/sdl-1.2.15/src/video/x11/ |
SDL_x11events.c | 29 #include <X11/keysym.h> 55 /* The translation tables from an X11 keysym to a SDL keysym */ 560 SDL_keysym keysym; local 568 /* Get the translated SDL virtual keysym and put it on the queue.*/ 569 keysym.scancode = keycode; 570 keysym.sym = X11_TranslateKeycode(SDL_Display, keycode); 571 keysym.mod = KMOD_NONE; 572 keysym.unicode = 0; 573 posted = SDL_PrivateKeyboard(SDL_PRESSED, &keysym); 753 SDL_keysym keysym; local [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/ |
X.h | 111 typedef XID KeySym; 146 #define NoSymbol 0L /* special KeySym */
|
Xlibint.h | 114 KeySym *keysyms; /* This server's keysyms */ 140 KeySym lock_meaning; /* for XLookupString */ [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/ |
X.h | 111 typedef XID KeySym; 146 #define NoSymbol 0L /* special KeySym */
|
Xlibint.h | 114 KeySym *keysyms; /* This server's keysyms */ 140 KeySym lock_meaning; /* for XLookupString */ [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/ |
X.h | 111 typedef XID KeySym; 146 #define NoSymbol 0L /* special KeySym */
|
Xlibint.h | 114 KeySym *keysyms; /* This server's keysyms */ 140 KeySym lock_meaning; /* for XLookupString */ [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/ |
XKBstr.h | 328 KeySym *syms; 349 KeySym sym;
|
XKBproto.h | 38 #define KeySym CARD32 1280 #undef KeySym
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/ |
XKBstr.h | 328 KeySym *syms; 349 KeySym sym;
|
XKBproto.h | 38 #define KeySym CARD32 1280 #undef KeySym
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/ |
XKBstr.h | 328 KeySym *syms; 349 KeySym sym;
|
XKBproto.h | 38 #define KeySym CARD32 1280 #undef KeySym
|
/external/chromium_org/media/base/ |
user_input_monitor_linux.cc | 309 KeySym key_sym =
|
/external/chromium_org/media/tools/player_x11/ |
player_x11.cc | 198 KeySym key = XkbKeycodeToKeysym(g_display, e.xkey.keycode, 0, 0);
|
/external/chromium_org/chrome/browser/chromeos/input_method/ |
input_method_engine.cc | 487 KeySym keysym = NoSymbol; local 488 ::XLookupString(x_key, NULL, 0, &keysym, NULL); 489 ibus_keyval = keysym;
|
/external/chromium_org/third_party/skia/src/views/unix/ |
SkOSWindow_Unix.cpp | 229 KeySym keysym = XkbKeycodeToKeysym(dsp, evt.xkey.keycode, local 231 if (keysym == XK_Escape) { 234 this->handleKey(XKeyToSkKey(keysym)); 235 long uni = keysym2ucs(keysym);
|
keysym2ucs.c | 2 * 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 [all...] |
/external/chromium_org/ui/events/keycodes/ |
keyboard_code_conversion_x.cc | 8 #include <X11/keysym.h> 25 KeySym keysym; local 26 XLookupString(&xev->xkey, NULL, 0, &keysym, NULL); 27 KeyboardCode keycode = KeyboardCodeFromXKeysym(keysym); 29 keysym = DefaultXKeysymFromHardwareKeycode(xev->xkey.keycode); 30 keycode = KeyboardCodeFromXKeysym(keysym); 36 KeyboardCode KeyboardCodeFromXKeysym(unsigned int keysym) { 37 // TODO(sad): Have |keysym| go through the X map list? 39 switch (keysym) { [all...] |
/external/skia/src/views/unix/ |
SkOSWindow_Unix.cpp | 229 KeySym keysym = XkbKeycodeToKeysym(dsp, evt.xkey.keycode, local 231 if (keysym == XK_Escape) { 234 this->handleKey(XKeyToSkKey(keysym)); 235 long uni = keysym2ucs(keysym);
|
/external/libpng/contrib/gregbook/ |
rpng-x.c | 94 #include <X11/keysym.h> 175 KeySym k;
|
rpng2-x.c | 111 #include <X11/keysym.h> /* defines XK_* macros */ 310 KeySym k; [all...] |