Home
last modified time | relevance | path

Searched refs:ISUPPER (Results 1 – 16 of 16) sorted by relevance

/third_party/node/deps/cares/src/lib/
Dares_strcasecmp.c32 int c1 = ISUPPER(a[i]) ? tolower(a[i]) : a[i]; in ares_strcasecmp()
33 int c2 = ISUPPER(b[i]) ? tolower(b[i]) : b[i]; in ares_strcasecmp()
55 int c1 = ISUPPER(a[i]) ? tolower(a[i]) : a[i]; in ares_strncasecmp()
56 int c2 = ISUPPER(b[i]) ? tolower(b[i]) : b[i]; in ares_strncasecmp()
Dinet_net_pton.c80 if (ISUPPER(ch)) in inet_net_pton_ipv4()
Dsetup_once.h282 #define ISUPPER(x) (isupper((int) ((unsigned char)x))) macro
/third_party/curl/lib/
Dcurl_ctype.h46 #define ISUPPER(x) (isupper((int) ((unsigned char)x))) macro
71 #define ISUPPER(x) (Curl_isupper((int) ((unsigned char)x))) macro
Dcurl_fnmatch.c131 if(ISUPPER(c)) in charclass()
322 found = ISUPPER(*s); in loop()
Durlapi.c1523 (ISUPPER(p[1]) || ISUPPER(p[2]))) { in curl_url_set()
Dcurl_sasl.c147 if(!ISUPPER(c) && !ISDIGIT(c) && c != '-' && c != '_') in Curl_sasl_decode_mech()
/third_party/gettext/gettext-tools/libgrep/
Dm-fgrep.c50 #define ISUPPER(C) (IN_CTYPE_DOMAIN (C) && isupper (C)) macro
51 #define TOLOWER(C) (ISUPPER(C) ? tolower(C) : (C))
DChangeLog.0136 (_, ISUPPER, TOLOWER): Moved here from m-common.c.
/third_party/glib/gio/xdgmime/
Dxdgmimeglob.c391 #define ISUPPER(c) ((c) >= 'A' && (c) <= 'Z') macro
402 *p++ = ISUPPER (c) ? c - 'A' + 'a' : c; in ascii_tolower()
Dxdgmimecache.c602 #define ISUPPER(c) ((c) >= 'A' && (c) <= 'Z') macro
613 *p++ = ISUPPER (c) ? c - 'A' + 'a' : c; in ascii_tolower()
/third_party/gettext/libtextstyle/gnulib-local/lib/glib/
Dgstrfuncs.c629 #define ISUPPER(c) ((c) >= 'A' && (c) <= 'Z') macro
631 #define ISALPHA(c) (ISUPPER (c) || ISLOWER (c))
633 #define TOLOWER(c) (ISUPPER (c) ? (c) - 'A' + 'a' : (c))
/third_party/glib/glib/
Dgstrfuncs.c1041 #define ISUPPER(c) ((c) >= 'A' && (c) <= 'Z') macro
1043 #define ISALPHA(c) (ISUPPER (c) || ISLOWER (c))
1045 #define TOLOWER(c) (ISUPPER (c) ? (c) - 'A' + 'a' : (c))
/third_party/curl/tests/server/
Dtftpd.c952 if(ISUPPER(*cp)) in do_tftp()
/third_party/gettext/gnulib-local/lib/
DChangeLog.1203 ISSPACE, ISUPPER, ISXDIGIT): Remove macros.
/third_party/python/Misc/
DHISTORY11820 (ISLOWER()/ISUPPER()/etc) have now been removed: use Py_ISLOWER() etc instead.