Home
last modified time | relevance | path

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

123456

/netbsd-src/bin/sh/
H A Dsyntax.h63 #define ISUPPER 02 /* an upper case letter */ macro
82 #define is_upper(c) (sh_ctype(c) & ISUPPER)
84 #define is_alpha(c) (sh_ctype(c) & (ISUPPER|ISLOWER))
85 #define is_name(c) (sh_ctype(c) & (ISUPPER|ISLOWER|ISUNDER))
86 #define is_in_name(c) (sh_ctype(c) & (ISUPPER|ISLOWER|ISUNDER|ISDIGIT))
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/libgrep/
H A Dm-common.c40 #define ISUPPER(C) (IN_CTYPE_DOMAIN (C) && isupper (C)) macro
41 #define TOLOWER(C) (ISUPPER(C) ? tolower(C) : (C))
/netbsd-src/external/bsd/nvi/dist/common/
H A Dmultibyte.h58 #define ISUPPER iswupper macro
91 #define ISUPPER isupper macro
H A Dcut.h69 L__name = ISUPPER((UCHAR_T)nch) ? TOLOWER((UCHAR_T)nch) : (nch);\
/netbsd-src/external/gpl3/gdb.old/dist/readline/readline/
H A Dchardefs.h95 #define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper ((unsigned char)c)) macro
99 #define _rl_uppercase_p(c) (NON_NEGATIVE(c) && ISUPPER(c))
/netbsd-src/external/gpl2/diffutils/dist/lib/
H A Dfnmatch.c38 #define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper (c)) macro
54 #define FOLD(c) ((flags & FNM_CASEFOLD) && ISUPPER ((unsigned char) (c)) \ in fnmatch()
/netbsd-src/external/gpl3/gdb/dist/readline/readline/
H A Dchardefs.h95 #define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper ((unsigned char)c)) macro
99 #define _rl_uppercase_p(c) (NON_NEGATIVE(c) && ISUPPER(c))
/netbsd-src/external/gpl2/grep/dist/lib/
H A Dfnmatch.c38 #define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper (c)) macro
54 #define FOLD(c) ((flags & FNM_CASEFOLD) && ISUPPER ((unsigned char) (c)) \ in fnmatch()
/netbsd-src/external/gpl2/gmake/dist/glob/
H A Dfnmatch.c86 # define ISUPPER(c) (ISASCII (c) && isupper (c)) macro
171 # define FOLD(c) ((flags & FNM_CASEFOLD) && ISUPPER (c) ? tolower (c) : (c))
386 || (STREQ (str, "upper") && ISUPPER ((unsigned char) *n))
/netbsd-src/external/gpl2/xcvs/dist/diff/
H A Dsystem.h223 #ifndef ISUPPER
224 #define ISUPPER(c) (CTYPE_DOMAIN (c) && isupper (c)) macro
/netbsd-src/external/gpl2/grep/dist/src/
H A Dsystem.h181 #define ISUPPER(C) (IN_CTYPE_DOMAIN (C) && isupper (C)) macro
192 #define TOLOWER(C) (ISUPPER(C) ? tolower(C) : (C))
/netbsd-src/external/ibm-public/postfix/dist/src/util/
H A Dlowercase.c42 if (ISUPPER(ch)) in lowercase()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/c-family/
H A Dc-spellcheck.cc39 return (str[1] == '_' || ISUPPER(str[1])); in name_reserved_for_implementation_p()
/netbsd-src/external/gpl3/gcc/dist/gcc/c-family/
H A Dc-spellcheck.cc39 return (str[1] == '_' || ISUPPER(str[1])); in name_reserved_for_implementation_p()
/netbsd-src/external/gpl3/gdb.old/dist/libiberty/
H A Dstrtoul.c94 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10; in strtoul()
H A Dstrtol.c144 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10; in strtol()
H A Dstrtoull.c99 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10; in strtoull()
/netbsd-src/external/gpl3/gcc.old/dist/libiberty/
H A Dstrtoul.c94 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10; in strtoul()
/netbsd-src/external/gpl3/gdb/dist/libiberty/
H A Dstrtoul.c94 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10; in strtoul()
H A Dstrtol.c144 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10; in strtol()
/netbsd-src/external/gpl3/binutils/dist/libiberty/
H A Dstrtoul.c94 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10; in strtoul()
H A Dstrtol.c144 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10; in strtol()
/netbsd-src/external/gpl3/gcc/dist/libiberty/
H A Dstrtoul.c94 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10; in strtoul()
H A Dstrtol.c144 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10; in strtol()
/netbsd-src/external/gpl3/binutils.old/dist/libiberty/
H A Dstrtoul.c94 c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10; in strtoul()

123456