Home
last modified time | relevance | path

Searched refs:IS_TYPE (Results 1 – 2 of 2) sorted by relevance

/openbmc/linux/drivers/accessibility/speakup/
H A Dkobjects.c48 if (IS_TYPE(i, B_CTL)) in chars_chartab_show()
50 else if (IS_TYPE(i, WDLM)) in chars_chartab_show()
52 else if (IS_TYPE(i, A_PUNC)) in chars_chartab_show()
54 else if (IS_TYPE(i, PUNC)) in chars_chartab_show()
56 else if (IS_TYPE(i, NUM)) in chars_chartab_show()
58 else if (IS_TYPE(i, A_CAP)) in chars_chartab_show()
60 else if (IS_TYPE(i, ALPHA)) in chars_chartab_show()
62 else if (IS_TYPE(i, B_CAPSYM)) in chars_chartab_show()
64 else if (IS_TYPE(i, B_SYM)) in chars_chartab_show()
H A Dspeakup.h41 #define IS_TYPE(x, type) ((spk_chartab[((u_char)x)] & type) == type) macro