Searched refs:ISUPPER (Results 1 - 25 of 34) sorted by relevance

12

/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dlowercase.c40 if (ISUPPER(ch))
H A Dsys_defs.h1709 #define ISUPPER(c) (ISASCII(c) && isupper((unsigned char)(c))) macro
1710 #define TOLOWER(c) (ISUPPER(c) ? tolower((unsigned char)(c)) : (c))
/macosx-10.10.1/bash-94.1.2/bash-3.2/include/
H A Dchartypes.h78 #define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper (c)) macro
100 #define TOLOWER(c) (ISUPPER(c) ? tolower(c) : (c))
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dstrtol.c142 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10;
H A Dstrtoul.c94 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10;
H A Dregex.c238 # define ISUPPER(c) (ISASCII (c) && isupper (c))
3259 && (ISUPPER (ch) || ISLOWER (ch)))
3304 || (is_upper && ISUPPER (ch))
3308 && (ISUPPER (ch) || ISLOWER (ch)))
7957 preg->translate[i] = ISUPPER (i) ? TOLOWER (i) : i;
237 # define ISUPPER macro
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/readline/
H A Dchardefs.h96 #define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper (c)) macro
100 #define _rl_uppercase_p(c) (NON_NEGATIVE(c) && ISUPPER(c))
/macosx-10.10.1/gnudiff-19/diffutils/lib/
H A Dfnmatch.c36 #define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper (c)) macro
52 #define FOLD(c) ((flags & FNM_CASEFOLD) && ISUPPER ((unsigned char) (c)) \
H A Dregex.c245 # define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper (c))
3330 && (ISUPPER (ch) || ISLOWER (ch)))
3375 || (is_upper && ISUPPER (ch))
3379 && (ISUPPER (ch) || ISLOWER (ch)))
8178 preg->translate[i] = ISUPPER (i) ? TOLOWER (i) : i;
244 # define ISUPPER macro
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dcurl_fnmatch.c261 (ISUPPER(c) && ISUPPER(rangestart))) {
375 found = ISUPPER(*s);
H A Dcurl_setup_once.h289 #define ISUPPER(x) (isupper((int) ((unsigned char)x))) macro
/macosx-10.10.1/rsync-45/rsync/lib/
H A Dwildmatch.c53 #define ISUPPER(c) (ISASCII(c) && isupper(c)) macro
83 if (force_lower_case && ISUPPER(t_ch))
211 if (ISUPPER(t_ch))
/macosx-10.10.1/cxxfilt-11/cxxfilt/include/
H A Dsafe-ctype.h103 #define ISUPPER(c) _sch_test(c, _sch_isupper) macro
/macosx-10.10.1/text_cmds-88/sort/
H A Dsystem.h362 The macro ISUPPER protects against this as well." */
391 #define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper (c)) macro
399 # define TOLOWER(Ch) (ISUPPER (Ch) ? tolower (Ch) : (Ch))
/macosx-10.10.1/gpatch-3/patch/
H A Dpartime.c72 #define ISUPPER(c) (CTYPE_DOMAIN (c) && isupper (c)) macro
238 buf[j] = ISUPPER (c) ? tolower (c) : c;
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/glob/
H A Dsmatch.c190 result = ISUPPER (c);
/macosx-10.10.1/ruby-106/ruby/
H A Dencoding.c592 else if (ISUPPER(*s)) *s = (char)TOLOWER(*s);
1514 if (ISUPPER(*s)) {
1531 if (ISUPPER(*s)) hasupper = 1;
H A Dstrftime.c810 if (ISUPPER(*s)) *s = TOLOWER(*s);
H A Dobject.c2011 if (!ISUPPER(*pbeg) || !rb_enc_symname2_p(pbeg, len, enc)) {
/macosx-10.10.1/ruby-106/ruby/ext/date/
H A Ddate_strftime.c43 if (ISUPPER(*s))
/macosx-10.10.1/zsh-61/zsh/Src/
H A Dpattern.c2434 #define ISUPPER(x) iswupper(x) macro
2440 #define ISUPPER(x) isupper(x) macro
2448 ((ISUPPER(chin) ? TOLOWER(chin) : chin) == \
2449 (ISUPPER(chpa) ? TOLOWER(chpa) : chpa)) : \
/macosx-10.10.1/emacs-93/emacs/src/
H A Dregex.c360 # define ISUPPER(c) (UPPERCASEP (c))
411 # define ISUPPER(c) (ISASCII (c) && isupper (c))
2084 case RECC_UPPER: return ISUPPER (ch);
5483 | (class_bits & BIT_UPPER && ISUPPER (c))
6440 preg->translate[i] = ISUPPER (i) ? TOLOWER (i) : i;
359 # define ISUPPER macro
410 # define ISUPPER macro
/macosx-10.10.1/lsof-53/lsof/lib/
H A Dregex.c286 #define ISUPPER(c) (ISASCII (c) && isupper (c))
2476 && (ISUPPER (ch) || ISLOWER (ch)))
2521 || (is_upper && ISUPPER (ch))
2525 && (ISUPPER (ch) || ISLOWER (ch)))
6151 preg->translate[i] = ISUPPER (i) ? TOLOWER (i) : i;
285 #define ISUPPER macro
/macosx-10.10.1/curl-83.1.2/curl/tests/server/
H A Dtftpd.c990 if(ISUPPER(*cp))
/macosx-10.10.1/ruby-106/ruby/include/ruby/
H A Druby.h1633 #define ISUPPER(c) rb_isupper((unsigned char)(c)) macro

Completed in 283 milliseconds

12