Home
last modified time | relevance | path

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

/linux-3.4.99/drivers/staging/speakup/
Dkobjects.c46 if (IS_TYPE(i, B_CTL)) in chars_chartab_show()
48 else if (IS_TYPE(i, WDLM)) in chars_chartab_show()
50 else if (IS_TYPE(i, A_PUNC)) in chars_chartab_show()
52 else if (IS_TYPE(i, PUNC)) in chars_chartab_show()
54 else if (IS_TYPE(i, NUM)) in chars_chartab_show()
56 else if (IS_TYPE(i, A_CAP)) in chars_chartab_show()
58 else if (IS_TYPE(i, ALPHA)) in chars_chartab_show()
60 else if (IS_TYPE(i, B_CAPSYM)) in chars_chartab_show()
62 else if (IS_TYPE(i, B_SYM)) in chars_chartab_show()
Dspeakup.h45 #define IS_TYPE(x, type) ((spk_chartab[((u_char)x)]&type) == type) macro