Home | History | Annotate | Download | only in cpp

Lines Matching refs:ISLOWER

7704 # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
7705 # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
7707 # define ISLOWER(c) \
7711 # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
7720 if (XOR (islower (i), ISLOWER (i))
14934 # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
14935 # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
14937 # define ISLOWER(c) \
14941 # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
14950 if (XOR (islower (i), ISLOWER (i))