Home
last modified time | relevance | path

Searched refs:ISLOWER (Results 1 – 25 of 206) sorted by relevance

123456789

/netbsd-src/bin/sh/
H A Dsyntax.h64 #define ISLOWER 04 /* a lower case letter */ macro
83 #define is_lower(c) (sh_ctype(c) & ISLOWER)
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))
H A Dsyntax.c100 set_range('a', 'z', ISLOWER)
/netbsd-src/external/gpl3/binutils.old/dist/libiberty/
H A Dcplus-dem.c214 if (!ISLOWER (mangled[0])) in ada_demangle()
230 if (ISLOWER (*p)) in ada_demangle()
235 while (ISLOWER(*p) || ISDIGIT (*p) in ada_demangle()
236 || (p[0] == '_' && (ISLOWER (p[1]) || ISDIGIT (p[1])))); in ada_demangle()
H A Drust-demangle.c135 else if (ISLOWER (c)) in parse_integer_62()
516 if (ISLOWER (d)) in print_ident()
705 if (!ISLOWER (ns) && !ISUPPER (ns)) in demangle_path()
/netbsd-src/external/gpl3/binutils/dist/libiberty/
H A Dcplus-dem.c214 if (!ISLOWER (mangled[0])) in ada_demangle()
230 if (ISLOWER (*p)) in ada_demangle()
235 while (ISLOWER(*p) || ISDIGIT (*p) in ada_demangle()
236 || (p[0] == '_' && (ISLOWER (p[1]) || ISDIGIT (p[1])))); in ada_demangle()
/netbsd-src/external/gpl3/gcc.old/dist/libiberty/
H A Dcplus-dem.c214 if (!ISLOWER (mangled[0])) in ada_demangle()
230 if (ISLOWER (*p)) in ada_demangle()
235 while (ISLOWER(*p) || ISDIGIT (*p) in ada_demangle()
236 || (p[0] == '_' && (ISLOWER (p[1]) || ISDIGIT (p[1])))); in ada_demangle()
/netbsd-src/external/gpl3/gcc/dist/libiberty/
H A Dcplus-dem.c214 if (!ISLOWER (mangled[0])) in ada_demangle()
230 if (ISLOWER (*p)) in ada_demangle()
235 while (ISLOWER(*p) || ISDIGIT (*p) in ada_demangle()
236 || (p[0] == '_' && (ISLOWER (p[1]) || ISDIGIT (p[1])))); in ada_demangle()
/netbsd-src/external/bsd/nvi/dist/common/
H A Dmultibyte.h54 #define ISLOWER iswlower macro
87 #define ISLOWER islower macro
/netbsd-src/external/gpl3/gdb.old/dist/readline/readline/
H A Dchardefs.h93 #define ISLOWER(c) (IN_CTYPE_DOMAIN (c) && islower ((unsigned char)c)) macro
98 #define _rl_lowercase_p(c) (NON_NEGATIVE(c) && ISLOWER(c))
/netbsd-src/external/gpl3/gdb/dist/readline/readline/
H A Dchardefs.h93 #define ISLOWER(c) (IN_CTYPE_DOMAIN (c) && islower ((unsigned char)c)) macro
98 #define _rl_lowercase_p(c) (NON_NEGATIVE(c) && ISLOWER(c))
/netbsd-src/external/ibm-public/postfix/dist/src/util/
H A Duppercase.c42 if (ISLOWER(ch)) in uppercase()
/netbsd-src/external/bsd/ipf/dist/lib/
H A Dprintfieldhdr.c48 if (ISALPHA(*t) && ISLOWER(*t))
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/
H A Dd-system.h46 #define islower(c) ISLOWER(c)
/netbsd-src/external/gpl2/gmake/dist/glob/
H A Dfnmatch.c83 # define ISLOWER(c) (ISASCII (c) && islower (c)) macro
382 || (STREQ (str, "lower") && ISLOWER ((unsigned char) *n))
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dgenextract.cc330 if (ISLOWER (path[i]) || ISUPPER (path[i])) in print_path()
344 else if (ISLOWER (path[i])) in print_path()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dgenextract.c331 if (ISLOWER (path[i]) || ISUPPER (path[i])) in print_path()
345 else if (ISLOWER (path[i])) in print_path()
/netbsd-src/external/gpl3/binutils/dist/ld/
H A Dldbuildid.c89 if (ISLOWER (xdigit)) in read_hex()
/netbsd-src/external/gpl3/binutils.old/dist/ld/
H A Dldbuildid.c89 if (ISLOWER (xdigit)) in read_hex()
/netbsd-src/external/gpl3/binutils.old/dist/include/
H A Dsafe-ctype.h95 #define ISLOWER(c) _sch_test(c, _sch_islower) macro
/netbsd-src/external/gpl3/gcc.old/dist/include/
H A Dsafe-ctype.h95 #define ISLOWER(c) _sch_test(c, _sch_islower) macro
/netbsd-src/external/bsd/nvi/dist/vi/
H A Dv_ulcase.c163 if (ISLOWER(ch)) { in ulcase()
/netbsd-src/external/gpl3/binutils/dist/include/
H A Dsafe-ctype.h95 #define ISLOWER(c) _sch_test(c, _sch_islower) macro
/netbsd-src/external/gpl3/gcc/dist/include/
H A Dsafe-ctype.h95 #define ISLOWER(c) _sch_test(c, _sch_islower) macro
/netbsd-src/external/bsd/openldap/dist/build/
H A Dopenldap.m4158 # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
159 # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
161 # define ISLOWER(c) (('a' <= (c) && (c) <= 'i') \
164 # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
168 if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2);
/netbsd-src/external/gpl2/grep/dist/src/
H A Dsystem.h182 #define ISLOWER(C) (IN_CTYPE_DOMAIN (C) && islower (C)) macro

123456789