Lines Matching refs:Ch
192 # define L_(Ch) L##Ch argument
196 # define ISSPACE(Ch) __iswspace_l ((Ch), loc) argument
197 # define ISALPHA(Ch) __iswalpha_l ((Ch), loc) argument
198 # define TOUPPER(Ch) __towupper_l ((Ch), loc) argument
200 # define ISSPACE(Ch) iswspace (Ch) argument
201 # define ISALPHA(Ch) iswalpha (Ch) argument
202 # define TOUPPER(Ch) towupper (Ch) argument
205 # define L_(Ch) Ch argument
209 # define ISSPACE(Ch) __isspace_l ((Ch), loc) argument
210 # define ISALPHA(Ch) __isalpha_l ((Ch), loc) argument
211 # define TOUPPER(Ch) __toupper_l ((Ch), loc) argument
213 # define ISSPACE(Ch) isspace (Ch) argument
214 # define ISALPHA(Ch) isalpha (Ch) argument
215 # define TOUPPER(Ch) toupper (Ch) argument