Searched refs:isupper (Results 1 - 25 of 64) sorted by relevance

123

/ast/src/lib/libast/comp/
H A Dstrcasecmp.c46 if (isupper(ac))
49 if (isupper(bc))
H A Dstrncasecmp.c50 if (isupper(ac))
53 if (isupper(bc))
/ast/src/lib/libast/regex/
H A Dregsub.c89 if (isupper(c))
93 if (isupper(c))
126 if (isupper(c))
222 if (isupper(c))
226 if (isupper(c))
H A Dregsubcomp.c241 if (isupper(c))
245 if (isupper(c))
272 if (isupper(c))
H A Dregsubexec.c108 if (isupper(c))
117 if (isupper(c))
H A Dreglib.h237 #define iswupper(x) isupper(x)
/ast/src/lib/libast/astsa/
H A Dstrmatch.c188 if (icase && isupper(sc))
300 if (icase && isupper(pc))
314 if ((flags & STR_ICASE) && isupper(sc))
422 if (icase ? islower(sc) : isupper(sc))
455 if (icase && isupper(pc))
458 if (icase && isupper(x))
479 if (icase && isupper(pc))
507 if (icase && isupper(pc))
/ast/src/cmd/3d/
H A Dstrmatch.c105 #undef isupper macro
106 #define isupper(x) iswupper(x) macro
286 if (icase && isupper(sc))
412 if (icase && isupper(pc))
426 if ((flags & STR_ICASE) && isupper(sc))
542 if (icase ? islower(sc) : isupper(sc))
650 if (icase && isupper(pc))
653 if (icase && isupper(x))
678 if (icase && isupper(pc))
709 if (icase && isupper(p
[all...]
/ast/src/cmd/pax/
H A Dconvert.c56 if (isupper(c))
/ast/src/lib/libtksh/tcl/
H A DtclLoad.c166 if ((isupper(UCHAR(*p1)) ? tolower(UCHAR(*p1)) : *p1)
167 != (isupper(UCHAR(*p2)) ? tolower(UCHAR(*p2)) : *p2)) {
288 if (isupper(c)) {
H A DtclCmdMZ.c165 if (isupper(UCHAR(*p))) {
173 if (isupper(UCHAR(*p))) {
314 if (isupper(UCHAR(*p))) {
322 if (isupper(UCHAR(*p))) {
1280 if (isupper(UCHAR(*p))) {
/ast/src/lib/libardir/
H A Dar-local.c111 if (isupper(*++s) && islower(s[1]) && islower(s[2]) && s[3] == ' ')
/ast/src/lib/libast/misc/
H A Dconformance.c58 if (isupper(c))
/ast/src/cmd/ksh93/edit/
H A Dcompletion.c69 if(isupper(a))
71 if(isupper(b))
/ast/src/cmd/dsslib/bgp/
H A Dbgp-ciscov6.c112 while ((state->line = sfgetr(file->io, '\n', 0)) && !isupper(*state->line));
180 while ((state->line = sfgetr(file->io, '\n', 0)) && !isupper(*state->line));
/ast/src/lib/libast/uwin/
H A Drcmd.c338 *p++ = isupper(*sp) ? tolower(*sp++) : *sp++;
395 *p = isupper(*p) ? tolower(*p) : *p;
499 if (isupper(*cp))
/ast/src/lib/libjcl/
H A Dfind.c56 while (*s && !isupper(*s))
62 if (isupper(*s))
/ast/src/cmd/mailx/
H A Dmisc.c546 return isupper(c) ? tolower(c) : c;
568 *s++ = isupper(c) ? tolower(c) : c;
/ast/src/cmd/nmake/
H A Dmisc.c395 if (isupper(*s))
403 if (isupper(*s))
H A Dmetarule.c115 return a == b || *p != '-' && *p != '+' && (isupper(a) ? tolower(a) : a) == (isupper(b) ? tolower(b) : b);
/ast/src/cmd/tests/
H A Ddate.c157 return isdigit(c) ? (c - '0') : (c - (isupper(c) ? 'A' : 'a') + 10);
H A Dopt.c138 c = isupper(c) ? tolower(c) : toupper(c);
/ast/src/cmd/INIT/
H A Drelease.c123 buf[i] = isupper(s[i]) ? tolower(s[i]) : s[i];
/ast/src/cmd/html/
H A Dbb2tok.c218 *s++ = isupper(c) ? tolower(c) : c;
/ast/src/cmd/ksh93/sh/
H A Dstring.c285 if(isupper(c))

Completed in 84 milliseconds

123