Symbol: islower
bin/csh/char.h
78
#define Islower(c) (((c) & QUOTE) ? 0 : islower((unsigned char) (c)))
bin/ed/main.c
1273
if (!islower(n)) {
bin/ed/main.c
1287
if (!islower(n)) {
bin/ksh/emacs.c
2115
if (islower((unsigned char)*cp))
bin/ksh/emacs.c
2125
if (islower((unsigned char)*cp))
bin/ksh/var.c
480
else if (islower(c))
bin/ksh/var.c
573
if (islower((unsigned char)*q))
bin/ksh/vi.c
1099
if (islower((unsigned char)*p)) {
common/lib/libc/inet/inet_addr.c
164
(c + 10 - (islower((unsigned char)c) ? 'a' : 'A'));
games/atc/update.c
308
if (islower((unsigned char)l))
games/battlestar/getcom.c
100
if (islower((unsigned char)*buf1)) {
games/bcd/bcd.c
169
if (isascii((unsigned char)*p) && islower((unsigned char)*p))
games/boggle/boggle/bog.c
187
if (islower((unsigned char)argv[0][0])) {
games/boggle/boggle/mach.c
245
if (!islower(ch))
games/boggle/boggle/mach.c
528
if (islower(ch)) {
games/boggle/mkdict/mkdict.c
86
if (!islower((unsigned char)*p))
games/cribbage/io.c
315
if (islower(c))
games/cribbage/io.c
412
if (islower((unsigned char)Msgbuf[0]) && Msgbuf[1] != ')')
games/cribbage/io.c
553
if (islower(c))
games/fortune/fortune/fortune.c
250
else if (islower((unsigned char)ch))
games/hack/hack.u_init.c
177
if (islower((unsigned char)pc))
games/hack/hack.u_init.c
209
if (islower((unsigned char)pc))
games/hangman/getword.c
66
if (!islower((unsigned char)*wp))
games/hunt/hunt/hunt.c
419
if (islower((unsigned char)c) && c - 'a' < i) {
games/mille/misc.c
81
if (islower(c))
games/mille/move.c
377
if (islower((unsigned char)c))
games/phantasia/io.c
229
if (islower(ch))
games/warp/intrp.c
543
if (islower((unsigned char)*c))
include/ctype.h
51
int islower(int);
lib/libc/citrus/citrus_bcs.h
54
_CITRUS_BCS_PRED(islower, c >= 'a' && c <= 'z')
lib/libc/gen/getpass.c
276
if ((flags & GETPASS_FORCE_UPPER) && islower((unsigned char)c))
lib/libc/inet/inet_network.c
89
val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A'));
lib/libc/inet/inet_pton.c
140
digit = c + 10 - (islower(c) ? 'a' : 'A');
lib/libc/inet/nsap_addr.c
74
if (islower(c))
lib/libc/nameser/ns_ttl.c
120
if (islower(ch))
lib/libc/regex/utils.h
53
#define iswlower(a) islower(a)
lib/libm/src/s_nan.c
47
if (islower((unsigned char)s))
lib/libpam/modules/pam_unix/pam_unix.c
585
for (p = new_pass; *p && islower((unsigned char)*p); ++p);
lib/libskey/put.c
2274
if (islower ((unsigned char)*word))
libexec/atrun/atrun.c
499
if (islower((unsigned char)queue))
libexec/getty/main.c
337
else if (islower((unsigned char)*p))
libexec/getty/main.c
474
if (islower(c))
libexec/httpd/cgi-bozo.c
520
if (islower((unsigned char)*s2))
sbin/gpt/main.c
184
if (islower(ch))
sys/arch/acorn32/stand/lib/devopen.c
53
if (islower((unsigned char)*p))
sys/arch/acorn32/stand/nbfs/nbfs.c
104
if (islower((unsigned char)*fname))
sys/arch/hp300/stand/mkboot/mkboot.c
271
if (islower((unsigned char)*str))
sys/arch/hpc/stand/libsa/winblk.c
61
#define _toupper(c) (islower(c) ? ((c) - 'a' + 'A') : (c))
sys/arch/hpcmips/stand/libsa/winblk.c
61
#define toupper(c) (islower(c) ? ((c) - 'a' + 'A') : (c))
sys/arch/hppa/stand/mkboot/mkboot.c
399
if (islower(*str))
sys/arch/ia64/stand/common/interp_backslash.c
28
#define DIGIT(x) (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
sys/ddb/db_write_cmd.c
57
show_old_val = islower((unsigned char)modif[0]);
sys/lib/libkern/libkern.h
177
return (isupper(ch) || islower(ch));
sys/lib/libkern/libkern.h
227
if (islower(ch))
sys/lib/libkern/libkern.h
72
LIBKERN_INLINE int islower(int) __unused;
tests/lib/libc/gen/h_ctype_abuse.c
55
M(ISLOWER, islower) \
tests/lib/libc/gen/t_ctype.c
1032
DEF_TEST_ABUSE(islower)
tests/lib/libc/gen/t_ctype.c
1047
DEF_TEST_ABUSE_OVERRIDE(islower)
tests/lib/libc/gen/t_ctype.c
1062
DEF_TEST_USE(islower)
tests/lib/libc/gen/t_ctype.c
1099
ATF_CHECK(islower(ydots));
tests/lib/libc/gen/t_ctype.c
1134
ATF_CHECK(!islower(Hard));
tests/lib/libc/gen/t_ctype.c
1169
ATF_CHECK(islower(ya));
tests/lib/libc/gen/t_ctype.c
1188
ADD_TEST_ABUSE(tp, islower);
tests/lib/libc/gen/t_ctype.c
1203
ADD_TEST_ABUSE_OVERRIDE(tp, islower);
tests/lib/libc/gen/t_ctype.c
1218
ADD_TEST_USE(tp, islower);
tests/lib/libc/gen/t_ctype.c
80
static int islower_wrapper(int ch) { return islower(ch); }
tests/lib/libc/locale/t_wctype.c
216
ATF_REQUIRE_EQ(!!islower(c), inout);
tests/usr.bin/xlint/lint1/msg_342.c
23
int islower(int);
tests/usr.bin/xlint/lint1/msg_342.c
53
islower(c);
usr.bin/at/at.c
636
if (!(islower(queue) || isupper(queue)))
usr.bin/config/mkheaders.c
325
if (islower((unsigned char)*cp))
usr.bin/config/mkheaders.c
337
if (islower((unsigned char)*cp))
usr.bin/config/mkheaders.c
544
*dst++ = (char)(islower((u_char)c) ? toupper((u_char)c) : c);
usr.bin/config/sem.c
450
&& !islower((unsigned char)*cp)))) {
usr.bin/ftp/cmds.c
1930
if (islower((unsigned char)dst[i]))
usr.bin/ftp/fetch.c
391
#define HEXTOINT(x) (x - (isdigit(x) ? '0' : (islower(x) ? 'a' : 'A') - 10))
usr.bin/mail/head.c
61
if (!islower((unsigned char)*cp++))
usr.bin/make/make.h
1193
ch_islower(char ch) { return islower((unsigned char)ch) != 0; }
usr.bin/passwd/local_passwd.c
97
for (t = p; *t && islower((unsigned char)*t); ++t);
usr.bin/passwd/yp_passwd.c
123
for (t = p; *t && islower((unsigned char)*t); ++t);
usr.bin/patch/util.c
147
for (s = simplename; *s && !islower((unsigned char)*s); s++)
usr.bin/rpcgen/rpc_main.c
515
if (islower((unsigned char)*tmp))
usr.bin/sdpquery/print.c
1062
if (!islower((unsigned char)lang[0]) ||
usr.bin/sdpquery/print.c
1063
!islower((unsigned char)lang[1]))
usr.bin/spell/spellprog/spellprog.c
397
if (islower((unsigned char)*cp))
usr.bin/telnet/telnet.c
625
else if (islower((unsigned char)c))
usr.bin/telnet/utilities.c
83
if (islower(c)) {
usr.bin/tip/tip.c
450
if (boolean(value(RAISE)) && islower((unsigned char)gch))
usr.bin/tr/str.c
225
{ "lower", islower },
usr.bin/xlint/common/lint.h
183
return islower((unsigned char)ch) != 0;
usr.bin/xlint/lint1/lex.c
1285
if (islower(c) != 0 && l > 0 && ch_isupper(keywd[0]))
usr.sbin/faithd/ftp.c
631
*q++ = islower((unsigned char)*p) ? toupper((unsigned char)*p) : *p;
usr.sbin/gspa/gspa/gsp_lex.c
178
if( islower(c) )
usr.sbin/makefs/cd9660.c
1659
if (islower((unsigned char)*oldname))
usr.sbin/makefs/cd9660.c
1722
if (islower((unsigned char)*oldname))
usr.sbin/makefs/cd9660/cd9660_strings.c
119
if (islower((unsigned char)*c) )
usr.sbin/makefs/cd9660/cd9660_strings.c
59
if (islower((unsigned char)str[p]) )
usr.sbin/makefs/cd9660/cd9660_strings.c
95
if (islower((unsigned char)*c) )
usr.sbin/syslogd/syslogd.c
1801
&& isupper(from_buf[0]) && islower(from_buf[1]) /* month */
usr.sbin/syslogd/syslogd.c
1802
&& islower(from_buf[2]))