Home
last modified time | relevance | path

Searched refs:islower (Results 1 – 25 of 168) sorted by relevance

1234567

/openbsd/usr.sbin/makefs/cd9660/
H A Dcd9660_strings.c47 if (islower((unsigned char)str[p]) ) in cd9660_uppercase_characters()
83 if (islower((unsigned char)*c) ) in cd9660_valid_a_chars()
107 if (islower((unsigned char)*c) ) in cd9660_valid_d_chars()
/openbsd/gnu/llvm/libcxx/include/
H A Dcctype25 int islower(int c);
79 #ifdef islower
80 #undef islower
118 using ::islower _LIBCPP_USING_IF_EXISTS;
H A Dctype.h50 #undef islower
/openbsd/lib/libc/gen/
H A Disctype.c91 #undef islower
93 islower(int c) in islower() function
97 DEF_STRONG(islower);
H A Dcharclass.h20 { "lower", islower },
/openbsd/gnu/lib/libstdc++/libstdc++/include/c_std/
H A Dstd_cctype.h57 #undef islower
73 using ::islower;
/openbsd/gnu/gcc/libstdc++-v3/include/c_std/
H A Dstd_cctype.h59 #undef islower
75 using ::islower;
/openbsd/gnu/usr.bin/perl/ext/POSIX/t/
H A Discrash5 use POSIX qw(isalpha islower);
15 islower("a");
/openbsd/games/caesar/
H A Dcaesar.c52 islower(ch) ? ('a' + (ch - 'a' + perm) % 26) : ch
103 if (islower(ch)) in main()
/openbsd/include/
H A Dctype.h73 int islower(int);
143 __only_inline int islower(int _c) in islower() function
259 return islower(_c); in islower_l()
/openbsd/sys/lib/libsa/
H A Dstand.h117 #define islower(c) ((c) >= 'a' && (c) <= 'z') macro
118 #define isalpha(c) (isupper(c)||islower(c))
120 #define toupper(c) (islower(c)?((c) - 'a' + 'A'):(c))
/openbsd/gnu/usr.sbin/mkhybrid/src/
H A Dname.c220 *result++ = (islower((unsigned char)*pnt) ? toupper((unsigned char)*pnt) : *pnt); in FDECL3()
288 *result++ = islower((unsigned char)*pnt) ? toupper((unsigned char)*pnt) : *pnt; in FDECL3()
/openbsd/lib/libc/hidden/
H A Dctype.h27 __only_inline int islower(int _c);
74 PROTO_NORMAL(islower);
/openbsd/gnu/llvm/llvm/lib/Support/
H A DStringExtras.cpp123 if (capitalizeFirst && std::islower(input.front())) in convertToCamelFromSnakeCase()
130 if (input[pos] == '_' && pos != (e - 1) && std::islower(input[pos + 1])) in convertToCamelFromSnakeCase()
/openbsd/regress/lib/libc/locale/check_isw/
H A Dcheck_isw.c61 check_bool(islower(i), iswlower(i), '6'); in test1()
111 check_bool(islower(s[j]), iswlower(c), '6'); in test2()
/openbsd/usr.bin/rsync/
H A Dcharclass.h20 { "lower", islower },
/openbsd/usr.bin/lex/
H A Dccl.c307 return isupper(c) ? tolower(c) : (islower(c) ? toupper(c) : c); in reverse_case()
314 return (isupper(c) || islower(c)) ? true : false; in has_case()
/openbsd/gnu/lib/libstdc++/libstdc++/include/c_compatibility/
H A Dctype.h40 using std::islower;
/openbsd/gnu/gcc/libstdc++-v3/include/c_compatibility/
H A Dctype.h40 using std::islower;
/openbsd/games/cribbage/
H A Dio.c289 if (islower(c)) in getuchar()
396 if (islower((unsigned char)Msgbuf[0]) && Msgbuf[1] != ')') in endmsg()
536 if (islower(c)) in get_line()
/openbsd/lib/libc/net/
H A Dinet_network.c62 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A')); in inet_network()
/openbsd/games/hangman/
H A Dgetword.c74 if (!islower((unsigned char)*wp)) in getword()
/openbsd/games/gomoku/
H A Dstoc.c96 if (islower(c)) in lton()
/openbsd/games/battlestar/
H A Dgetcom.c95 if (islower((unsigned char)*buf1)) { in getword()
/openbsd/usr.bin/make/
H A Ddefines.h99 #define ISLOWER(c) (islower((unsigned char)(c)))

1234567