Lines Matching refs:QUOTE
64 (((c) & QUOTE) ? 0 : (_cmap[(unsigned char)(c)] & (bits)))
70 #define letter(c) (((c) & QUOTE) ? 0 : \
72 #define alnum(c) (((c) & QUOTE) ? 0 : \
75 #define Isspace(c) (((c) & QUOTE) ? 0 : isspace((unsigned char) (c)))
76 #define Isdigit(c) (((c) & QUOTE) ? 0 : isdigit((unsigned char) (c)))
77 #define Isalpha(c) (((c) & QUOTE) ? 0 : isalpha((unsigned char) (c)))
78 #define Islower(c) (((c) & QUOTE) ? 0 : islower((unsigned char) (c)))
79 #define Isupper(c) (((c) & QUOTE) ? 0 : isupper((unsigned char) (c)))
80 #define Tolower(c) (((c) & QUOTE) ? 0 : tolower((unsigned char) (c)))
81 #define Toupper(c) (((c) & QUOTE) ? 0 : toupper((unsigned char) (c)))
82 #define Isxdigit(c) (((c) & QUOTE) ? 0 : isxdigit((unsigned char) (c)))
83 #define Isalnum(c) (((c) & QUOTE) ? 0 : isalnum((unsigned char) (c)))
84 #define Iscntrl(c) (((c) & QUOTE) ? 0 : iscntrl((unsigned char) (c)))
85 #define Isprint(c) (((c) & QUOTE) ? 0 : isprint((unsigned char) (c)))