Home
last modified time | relevance | path

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

/third_party/curl/lib/
Dcurl_ctype.h47 #define ISLOWER(x) (islower((int) ((unsigned char)x))) macro
72 #define ISLOWER(x) (Curl_islower((int) ((unsigned char)x))) macro
Dcurl_fnmatch.c86 if(ISLOWER(c)) in parsekeyword()
133 if(ISLOWER(c)) in charclass()
324 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/gettext/libtextstyle/gnulib-local/lib/glib/
Dgstrfuncs.c630 #define ISLOWER(c) ((c) >= 'a' && (c) <= 'z') macro
631 #define ISALPHA(c) (ISUPPER (c) || ISLOWER (c))
632 #define TOUPPER(c) (ISLOWER (c) ? (c) - 'a' + 'A' : (c))
/third_party/glib/glib/
Dgstrfuncs.c1042 #define ISLOWER(c) ((c) >= 'a' && (c) <= 'z') macro
1043 #define ISALPHA(c) (ISUPPER (c) || ISLOWER (c))
1044 #define TOUPPER(c) (ISLOWER (c) ? (c) - 'a' + 'A' : (c))
/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/gettext/gnulib-local/lib/
DChangeLog.1202 (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT,
/third_party/python/
Dconfigure5603 if (XOR (islower (i), ISLOWER (i))
8066 if (XOR (islower (i), ISLOWER (i))
/third_party/flutter/skia/third_party/externals/icu/source/
Dconfigure4676 if (XOR (islower (i), ISLOWER (i))
/third_party/icu/icu4c/source/
Dconfigure4730 if (XOR (islower (i), ISLOWER (i))
/third_party/skia/third_party/externals/icu/source/
Dconfigure4730 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/flutter/skia/third_party/externals/sdl/
Dconfigure7052 if (XOR (islower (i), ISLOWER (i))
16126 if (XOR (islower (i), ISLOWER (i))
/third_party/e2fsprogs/
Dconfigure4695 if (XOR (islower (i), ISLOWER (i))
/third_party/flutter/skia/third_party/externals/libpng/
Dconfigure12754 if (XOR (islower (i), ISLOWER (i))
/third_party/mtdev/
Dconfigure7546 if (XOR (islower (i), ISLOWER (i))
/third_party/skia/third_party/externals/libpng/
Dconfigure12754 if (XOR (islower (i), ISLOWER (i))
/third_party/libpng/
Dconfigure12754 if (XOR (islower (i), ISLOWER (i))
/third_party/libevdev/
Dconfigure3513 if (XOR (islower (i), ISLOWER (i))
/third_party/freetype/builds/unix/
Dconfigure12449 if (XOR (islower (i), ISLOWER (i))
/third_party/expat/
Dconfigure8247 if (XOR (islower (i), ISLOWER (i))
/third_party/eudev/
Dconfigure4046 if (XOR (islower (i), ISLOWER (i))
/third_party/skia/third_party/externals/microhttpd/
Dconfigure7754 if (XOR (islower (i), ISLOWER (i))
/third_party/python/Misc/
DHISTORY11820 (ISLOWER()/ISUPPER()/etc) have now been removed: use Py_ISLOWER() etc instead.