Lines Matching refs:sym
239 XConvertCase(xkb_keysym_t sym, xkb_keysym_t *lower, xkb_keysym_t *upper);
653 XConvertCase(xkb_keysym_t sym, xkb_keysym_t *lower, xkb_keysym_t *upper) in XConvertCase() argument
656 if (sym < 0x100) { in XConvertCase()
657 UCSConvertCase(sym, lower, upper); in XConvertCase()
662 if ((sym & 0xff000000) == 0x01000000) { in XConvertCase()
663 UCSConvertCase((sym & 0x00ffffff), lower, upper); in XConvertCase()
671 *lower = sym; in XConvertCase()
672 *upper = sym; in XConvertCase()
674 switch(sym >> 8) { in XConvertCase()
677 if (sym == XKB_KEY_Aogonek) in XConvertCase()
679 else if (sym >= XKB_KEY_Lstroke && sym <= XKB_KEY_Sacute) in XConvertCase()
681 else if (sym >= XKB_KEY_Scaron && sym <= XKB_KEY_Zacute) in XConvertCase()
683 else if (sym >= XKB_KEY_Zcaron && sym <= XKB_KEY_Zabovedot) in XConvertCase()
685 else if (sym == XKB_KEY_aogonek) in XConvertCase()
687 else if (sym >= XKB_KEY_lstroke && sym <= XKB_KEY_sacute) in XConvertCase()
689 else if (sym >= XKB_KEY_scaron && sym <= XKB_KEY_zacute) in XConvertCase()
691 else if (sym >= XKB_KEY_zcaron && sym <= XKB_KEY_zabovedot) in XConvertCase()
693 else if (sym >= XKB_KEY_Racute && sym <= XKB_KEY_Tcedilla) in XConvertCase()
695 else if (sym >= XKB_KEY_racute && sym <= XKB_KEY_tcedilla) in XConvertCase()
700 if (sym >= XKB_KEY_Hstroke && sym <= XKB_KEY_Hcircumflex) in XConvertCase()
702 else if (sym >= XKB_KEY_Gbreve && sym <= XKB_KEY_Jcircumflex) in XConvertCase()
704 else if (sym >= XKB_KEY_hstroke && sym <= XKB_KEY_hcircumflex) in XConvertCase()
706 else if (sym >= XKB_KEY_gbreve && sym <= XKB_KEY_jcircumflex) in XConvertCase()
708 else if (sym >= XKB_KEY_Cabovedot && sym <= XKB_KEY_Scircumflex) in XConvertCase()
710 else if (sym >= XKB_KEY_cabovedot && sym <= XKB_KEY_scircumflex) in XConvertCase()
715 if (sym >= XKB_KEY_Rcedilla && sym <= XKB_KEY_Tslash) in XConvertCase()
717 else if (sym >= XKB_KEY_rcedilla && sym <= XKB_KEY_tslash) in XConvertCase()
719 else if (sym == XKB_KEY_ENG) in XConvertCase()
721 else if (sym == XKB_KEY_eng) in XConvertCase()
723 else if (sym >= XKB_KEY_Amacron && sym <= XKB_KEY_Umacron) in XConvertCase()
725 else if (sym >= XKB_KEY_amacron && sym <= XKB_KEY_umacron) in XConvertCase()
730 if (sym >= XKB_KEY_Serbian_DJE && sym <= XKB_KEY_Serbian_DZE) in XConvertCase()
732 else if (sym >= XKB_KEY_Serbian_dje && sym <= XKB_KEY_Serbian_dze) in XConvertCase()
734 else if (sym >= XKB_KEY_Cyrillic_YU && sym <= XKB_KEY_Cyrillic_HARDSIGN) in XConvertCase()
736 else if (sym >= XKB_KEY_Cyrillic_yu && sym <= XKB_KEY_Cyrillic_hardsign) in XConvertCase()
741 if (sym >= XKB_KEY_Greek_ALPHAaccent && sym <= XKB_KEY_Greek_OMEGAaccent) in XConvertCase()
743 else if (sym >= XKB_KEY_Greek_alphaaccent && sym <= XKB_KEY_Greek_omegaaccent && in XConvertCase()
744 sym != XKB_KEY_Greek_iotaaccentdieresis && in XConvertCase()
745 sym != XKB_KEY_Greek_upsilonaccentdieresis) in XConvertCase()
747 else if (sym >= XKB_KEY_Greek_ALPHA && sym <= XKB_KEY_Greek_OMEGA) in XConvertCase()
749 else if (sym >= XKB_KEY_Greek_alpha && sym <= XKB_KEY_Greek_omega && in XConvertCase()
750 sym != XKB_KEY_Greek_finalsmallsigma) in XConvertCase()
754 if (sym == XKB_KEY_OE) in XConvertCase()
756 else if (sym == XKB_KEY_oe) in XConvertCase()
758 else if (sym == XKB_KEY_Ydiaeresis) in XConvertCase()