HomeSort by: relevance | last modified time | path
    Searched refs:ISUPPER (Results 1 - 25 of 90) sorted by relevancy

1 2 3 4

  /src/bin/sh/
syntax.h 65 #define ISUPPER 02 /* an upper case letter */
84 #define is_upper(c) (sh_ctype(c) & ISUPPER)
86 #define is_alpha(c) (sh_ctype(c) & (ISUPPER|ISLOWER))
87 #define is_name(c) (sh_ctype(c) & (ISUPPER|ISLOWER|ISUNDER))
88 #define is_in_name(c) (sh_ctype(c) & (ISUPPER|ISLOWER|ISUNDER|ISDIGIT))
  /src/external/gpl2/gettext/dist/gettext-tools/libgrep/
m-common.c 40 #define ISUPPER(C) (IN_CTYPE_DOMAIN (C) && isupper (C))
41 #define TOLOWER(C) (ISUPPER(C) ? tolower(C) : (C))
  /src/external/gpl3/gcc.old/dist/gcc/c-family/
c-spellcheck.cc 39 return (str[1] == '_' || ISUPPER(str[1]));
  /src/external/bsd/nvi/dist/common/
multibyte.h 58 #define ISUPPER iswupper
91 #define ISUPPER isupper
cut.h 69 L__name = ISUPPER((UCHAR_T)nch) ? TOLOWER((UCHAR_T)nch) : (nch);\
  /src/external/gpl3/binutils/dist/libiberty/
strtol.c 144 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10;
strtoll.c 152 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10;
strtoul.c 94 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10;
strtoull.c 99 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10;
  /src/external/gpl3/binutils.old/dist/libiberty/
strtol.c 144 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10;
strtoll.c 152 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10;
strtoul.c 94 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10;
strtoull.c 99 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10;
  /src/external/gpl3/gcc.old/dist/libiberty/
strtol.c 144 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10;
strtoll.c 152 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10;
strtoul.c 94 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10;
strtoull.c 99 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10;
  /src/external/gpl2/diffutils/dist/lib/
fnmatch.c 38 #define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper (c))
54 #define FOLD(c) ((flags & FNM_CASEFOLD) && ISUPPER ((unsigned char) (c)) \
  /src/external/gpl2/grep/dist/lib/
fnmatch.c 38 #define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper (c))
54 #define FOLD(c) ((flags & FNM_CASEFOLD) && ISUPPER ((unsigned char) (c)) \
  /src/external/gpl2/grep/dist/src/
system.h 181 #define ISUPPER(C) (IN_CTYPE_DOMAIN (C) && isupper (C))
192 #define TOLOWER(C) (ISUPPER(C) ? tolower(C) : (C))
  /src/external/gpl2/xcvs/dist/diff/
system.h 223 #ifndef ISUPPER
224 #define ISUPPER(c) (CTYPE_DOMAIN (c) && isupper (c))
  /src/tests/lib/libc/gen/
h_ctype_abuse.c 54 M(ISUPPER, isupper) \
  /src/external/gpl2/gmake/dist/glob/
fnmatch.c 86 # define ISUPPER(c) (ISASCII (c) && isupper (c))
160 # define FOLD(c) ((flags & FNM_CASEFOLD) && ISUPPER (c) ? tolower (c) : (c))
375 || (STREQ (str, "upper") && ISUPPER ((unsigned char) *n))
  /src/external/gpl3/binutils/dist/gas/config/
tc-mmix.h 66 : ((name[0] == ':' || ISUPPER (name[0])) \
  /src/external/gpl3/binutils.old/dist/gas/config/
tc-mmix.h 66 : ((name[0] == ':' || ISUPPER (name[0])) \

Completed in 59 milliseconds

1 2 3 4