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

1 2 3

  /external/skia/src/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) {
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/libvncserver/x11vnc/
linuxfb.c 54 void console_key_command(rfbBool down, rfbKeySym keysym, rfbClientPtr client);
272 void console_key_command(rfbBool down, rfbKeySym keysym, rfbClientPtr client) {
276 if (debug_keyboard) fprintf(stderr, "console_key_command: %d %s\n", (int) keysym, down ? "down" : "up");
290 if (keysym == XK_Control_L || keysym == XK_Control_R) {
300 if (keysym == XK_Alt_L || keysym == XK_Alt_R) {
313 if (keysym == XK_Escape) {
314 keysym = 27;
318 if (keysym >= 'a' && keysym <= 'z')
    [all...]
keyboard.h 41 extern int track_mod_state(rfbKeySym keysym, rfbBool down, rfbBool set);
48 extern int add_keysym(KeySym keysym);
51 extern int sloppy_key_check(int key, rfbBool down, rfbKeySym keysym, int *new_kc);
60 extern void keyboard(rfbBool down, rfbKeySym keysym, rfbClientPtr client);
linuxfb.h 38 extern void console_key_command(rfbBool down, rfbKeySym keysym, rfbClientPtr client);
v4l.h 38 extern void v4l_key_command(rfbBool down, rfbKeySym keysym, rfbClientPtr client);
xrecord.h 48 extern KeySym xrecord_keysym;
62 extern int xrecord_skip_keysym(rfbKeySym keysym);
64 extern int xrecord_scroll_keysym(rfbKeySym keysym);
keyboard.c 54 int track_mod_state(rfbKeySym keysym, rfbBool down, rfbBool set);
61 int add_keysym(KeySym keysym);
64 int sloppy_key_check(int key, rfbBool down, rfbKeySym keysym, int *new_kc);
73 void keyboard(rfbBool down, rfbKeySym keysym, rfbClientPtr client);
81 static void xkb_tweak_keyboard(rfbBool down, rfbKeySym keysym,
84 static void modifier_tweak_keyboard(rfbBool down, rfbKeySym keysym,
86 static void pipe_keyboard(rfbBool down, rfbKeySym keysym, rfbClientPtr client);
130 static KeySym keysyms[256];
135 KeySym *keymap
982 KeySym keysym, *keymap; local
    [all...]
macosxCG.h 54 extern void macosxCG_keysym_inject(int down, unsigned int keysym);
uinput.h 55 extern void uinput_key_command(int down, int keysym, rfbClientPtr client);
util.h 94 #define ismodkey(keysym) \
95 ((((KeySym)(keysym) >= XK_Shift_L) && ((KeySym)(keysym) <= XK_Hyper_R) && \
96 ((KeySym)(keysym) != XK_Caps_Lock) && ((KeySym)(keysym) != XK_Shift_Lock)))
macosx.h 41 extern void macosx_key_command(rfbBool down, rfbKeySym keysym, rfbClientPtr client);
unixpw.h 40 extern void unixpw_keystroke(rfbBool down, rfbKeySym keysym, int init);
v4l.c 59 void v4l_key_command(rfbBool down, rfbKeySym keysym, rfbClientPtr client);
621 void v4l_key_command(rfbBool down, rfbKeySym keysym, rfbClientPtr client) {
638 if (keysym == XK_b) {
640 } else if (keysym == XK_B) {
642 } else if (keysym == XK_h) {
644 } else if (keysym == XK_H) {
646 } else if (keysym == XK_c) {
648 } else if (keysym == XK_C) {
650 } else if (keysym == XK_n) {
652 } else if (keysym == XK_N)
    [all...]
  /external/libvncserver/webclients/novnc/include/
input.js 37 // From the event keyCode return the keysym value for keys that need
41 var keysym = null;
45 case 8 : keysym = 0xFF08; break; // BACKSPACE
46 case 13 : keysym = 0xFF0D; break; // ENTER
49 case 9 : keysym = 0xFF09; break; // TAB
55 case 27 : keysym = 0xFF1B; break; // ESCAPE
56 case 46 : keysym = 0xFFFF; break; // DELETE
58 case 36 : keysym = 0xFF50; break; // HOME
59 case 35 : keysym = 0xFF57; break; // END
60 case 33 : keysym = 0xFF55; break; // PAGE_U
    [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...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xutil.h 54 #include <X11/keysym.h>
229 * Keysym macros, used on Keysyms to test for classes of symbols
231 #define IsKeypadKey(keysym) \
232 (((KeySym)(keysym) >= XK_KP_Space) && ((KeySym)(keysym) <= XK_KP_Equal))
234 #define IsPrivateKeypadKey(keysym) \
235 (((KeySym)(keysym) >= 0x11000000) && ((KeySym)(keysym) <= 0x1100FFFF)
    [all...]
  /external/libvncserver/x11vnc/misc/
vcinject.pl 18 # Keysym <id> <down> <n> <Keysym> ...
94 # for debugging, you type the keysym in manually.
95 $_ = "Keysym 1 0 999 $_ None";
97 next unless /^Keysym/;
99 my ($j, $id, $down, $k, $keysym, $rest) = split(' ', $_);
101 $n = lookup($down, $k, $keysym);
103 print STDERR "skip: '$keysym' -> $n\n" if $down && $debug;
110 print STDERR "ctrl=$control $keysym/$k syscall(" .
  /external/libvncserver/VisualNaCro/
recorder.pl 144 $keysym=nacro::getkeysym($vnc);
146 if(nacro::sendkey($vnc,$keysym,$keydown)) {
148 if ($symbolic and exists $sym_name{$keysym}) {
149 print OUT 'nacro::sendkey($vnc,$sym{'.$sym_name{$keysym}."},$keydown);\n";
151 print OUT "nacro::sendkey(\$vnc,$keysym,$keydown);\n";
154 if($keysym==0xffe3 || $keysym==0xffe4) {
204 $keysym=nacro::getkeysym($vnc);
206 if($keysym==ord('q')) {
211 } elsif ($keysym == ord('d'))
    [all...]
nacro.c 20 uint32_t keysym; member in struct:private_resource_t
75 static void got_key(rfbBool down,rfbKeySym keysym,rfbClientRec* cl)
80 res->keysym=keysym;
624 return r->keysym;
714 bool_t sendkey(resource_t res,keysym_t keysym,bool_t keydown)
719 return SendKeyEvent(r->client,keysym,keydown);
730 int keysym = *string; local
733 if (keysym >= 8 && keysym < ' ')
    [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...]
  /prebuilts/python/linux-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...]
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
app-linux.c 53 #include <X11/keysym.h>
222 unsigned int keycode, keysym; local
224 keysym = XKeycodeToKeysym(sDisplay, keycode, 0);
225 if (keysym == XK_Return || keysym == XK_Escape)
  /external/deqp/framework/platform/X11/
tcuX11.hpp 33 #include <X11/keysym.h>

Completed in 153 milliseconds

1 2 3