Searched refs:ISLOWER (Results 1 – 13 of 13) sorted by relevance
/third_party/curl/lib/ |
D | curl_ctype.h | 38 #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
|
D | curl_fnmatch.c | 88 if(ISLOWER(c)) in parsekeyword() 135 if(ISLOWER(c)) in charclass() 326 found = ISLOWER(*s); in loop()
|
/third_party/node/deps/cares/src/lib/ |
D | setup_once.h | 283 #define ISLOWER(x) (islower((int) ((unsigned char)x))) macro
|
/third_party/icu/tools/multi/c/patch/ |
D | 3_2 | 6220 > # 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);
|
D | 3_0 | 6519 +# 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/ |
D | configure | 5603 if (XOR (islower (i), ISLOWER (i)) 8066 if (XOR (islower (i), ISLOWER (i))
|
/third_party/skia/third_party/externals/icu/source/ |
D | configure | 4730 if (XOR (islower (i), ISLOWER (i))
|
/third_party/icu/icu4c/source/ |
D | configure | 4744 if (XOR (islower (i), ISLOWER (i))
|
/third_party/libffi/ |
D | configure | 8706 if (XOR (islower (i), ISLOWER (i)) 17705 if (XOR (islower (i), ISLOWER (i))
|
/third_party/skia/third_party/externals/libpng/ |
D | configure | 12754 if (XOR (islower (i), ISLOWER (i))
|
/third_party/skia/third_party/externals/microhttpd/ |
D | configure | 7754 if (XOR (islower (i), ISLOWER (i))
|
/third_party/libevdev/ |
D | third_party_libevdev.diff | 10190 -# 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/ |
D | HISTORY | 11820 (ISLOWER()/ISUPPER()/etc) have now been removed: use Py_ISLOWER() etc instead.
|