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

1 2 3 4 5 6

  /src/external/ibm-public/postfix/dist/src/util/
lowercase.c 42 if (ISUPPER(ch))
  /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/gpl3/gdb.old/dist/gdbsupport/
gdb-safe-ctype.h 43 #undef ISUPPER
  /src/external/gpl3/gdb/dist/gdbsupport/
gdb-safe-ctype.h 43 #undef ISUPPER
  /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/dist/gcc/c-family/
c-spellcheck.cc 39 return (str[1] == '_' || ISUPPER(str[1]));
  /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/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;

Completed in 27 milliseconds

1 2 3 4 5 6