Searched refs:is_in_table (Results 1 – 1 of 1) sorted by relevance
| /freebsd/contrib/less/ |
| H A D | charset.c | 854 static lbool is_in_table(LWCHAR ch, struct wchar_range_table *table) in is_in_table() function 882 if (is_in_table(ch, tbl1)) return FALSE; in not_user_defined() 883 if (is_in_table(ch, tbl2)) return FALSE; in not_user_defined() 884 if (is_in_table(ch, tbl3)) return FALSE; in not_user_defined() 894 if (is_in_table(ch, &user_prt_table)) return FALSE; in is_composing_char() 895 return is_in_table(ch, &user_compose_table) || in is_composing_char() 896 (is_in_table(ch, &compose_table) || in is_composing_char() 897 (bs_mode != BS_CONTROL && is_in_table(ch, &fmt_table) && in is_composing_char() 906 if (is_in_table(ch, &user_prt_table)) return FALSE; in is_ubin_char() 907 return is_in_table(ch, &user_ubin_table) || in is_ubin_char() [all …]
|