Home
last modified time | relevance | path

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

/linux-4.1.27/drivers/staging/speakup/
Dkobjects.c47 if (IS_TYPE(i, B_CTL)) in chars_chartab_show()
49 else if (IS_TYPE(i, WDLM)) in chars_chartab_show()
51 else if (IS_TYPE(i, A_PUNC)) in chars_chartab_show()
53 else if (IS_TYPE(i, PUNC)) in chars_chartab_show()
55 else if (IS_TYPE(i, NUM)) in chars_chartab_show()
57 else if (IS_TYPE(i, A_CAP)) in chars_chartab_show()
59 else if (IS_TYPE(i, ALPHA)) in chars_chartab_show()
61 else if (IS_TYPE(i, B_CAPSYM)) in chars_chartab_show()
63 else if (IS_TYPE(i, B_SYM)) in chars_chartab_show()
Dspeakup.h43 #define IS_TYPE(x, type) ((spk_chartab[((u_char)x)]&type) == type) macro