Home
last modified time | relevance | path

Searched refs:ISLOWER (Results 1 – 13 of 13) sorted by relevance

/third_party/curl/lib/
Dcurl_ctype.h38 #define ISALPHA(x) (ISLOWER(x) || ISUPPER(x))
40 #define ISALNUM(x) (ISDIGIT(x) || ISLOWER(x) || ISUPPER(x))
42 #define ISLOWER(x) (((x) >= 'a') && ((x) <= 'z')) macro
Dcurl_fnmatch.c88 if(ISLOWER(c)) in parsekeyword()
135 if(ISLOWER(c)) in charclass()
326 found = ISLOWER(*s); in loop()
/third_party/node/deps/cares/src/lib/
Dsetup_once.h283 #define ISLOWER(x) (islower((int) ((unsigned char)x))) macro
/third_party/icu/tools/multi/c/patch/
D3_26220 > # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
6221 > # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
6223 > # define ISLOWER(c) \
6227 > # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
6236 > if (XOR (islower (i), ISLOWER (i))
9082 < #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
9083 < #define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
9086 < if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2);
D3_06519 +# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
6520 +# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
6522 +# define ISLOWER(c) \
6526 +# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
6535 + if (XOR (islower (i), ISLOWER (i))
9440 -#define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
9441 -#define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
9444 -if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2);
/third_party/python/
Dconfigure5603 if (XOR (islower (i), ISLOWER (i))
8066 if (XOR (islower (i), ISLOWER (i))
/third_party/skia/third_party/externals/icu/source/
Dconfigure4730 if (XOR (islower (i), ISLOWER (i))
/third_party/icu/icu4c/source/
Dconfigure4744 if (XOR (islower (i), ISLOWER (i))
/third_party/libffi/
Dconfigure8706 if (XOR (islower (i), ISLOWER (i))
17705 if (XOR (islower (i), ISLOWER (i))
/third_party/skia/third_party/externals/libpng/
Dconfigure12754 if (XOR (islower (i), ISLOWER (i))
/third_party/skia/third_party/externals/microhttpd/
Dconfigure7754 if (XOR (islower (i), ISLOWER (i))
/third_party/libevdev/
Dthird_party_libevdev.diff10190 -# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
10191 -# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
10193 -# define ISLOWER(c) \
10197 -# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
10210 - if (XOR (islower (i), ISLOWER (i))
/third_party/python/Misc/
DHISTORY11820 (ISLOWER()/ISUPPER()/etc) have now been removed: use Py_ISLOWER() etc instead.