/freebsd/usr.sbin/makefs/cd9660/ |
H A D | cd9660_strings.c | 52 if (islower((unsigned char)str[p]) ) in cd9660_uppercase_characters() 88 if (islower((unsigned char)*c) ) in cd9660_valid_a_chars() 112 if (islower((unsigned char)*c) ) in cd9660_valid_d_chars()
|
/freebsd/cddl/contrib/opensolaris/common/util/ |
H A D | strtolctype.h | 50 #define isalpha(ch) (isupper(ch) || islower(ch)) 52 #define islower(ch) ((ch) >= 'a' && (ch) <= 'z') macro 62 (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
|
/freebsd/sys/cddl/contrib/opensolaris/common/util/ |
H A D | strtolctype.h | 50 #define isalpha(ch) (isupper(ch) || islower(ch)) 52 #define islower(ch) ((ch) >= 'a' && (ch) <= 'z') macro 62 (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | cctype | 25 int islower(int c); 78 #ifdef islower 79 # undef islower 116 using ::islower _LIBCPP_USING_IF_EXISTS;
|
H A D | ctype.h | 22 int islower(int c); 50 # undef islower
|
/freebsd/sys/sys/ |
H A D | ctype.h | 61 islower(int c) in islower() function 69 return (isupper(c) || islower(c)); in isalpha()
|
/freebsd/sys/contrib/ncsw/inc/ |
H A D | ctype_ext.h | 61 #define islower(c) ((__ismask(c)&(_L)) != 0) macro 80 if (islower(c)) in __toupper()
|
/freebsd/usr.bin/caesar/ |
H A D | caesar.c | 50 islower(ch) ? ('a' + (ch - 'a' + perm) % 26) : ch) : ch 93 if (islower(ch)) in main()
|
/freebsd/include/ |
H A D | ctype.h | 53 int islower(int); 92 #define islower(c) __sbistype((c), _CTYPE_L) macro
|
/freebsd/lib/libc/locale/ |
H A D | isctype.c | 112 #undef islower 114 islower(int c) in islower() function
|
H A D | Makefile.inc | 34 isdigit.3 isgraph.3 isideogram.3 islower.3 isphonogram.3 isprint.3 \ 60 MLINKS+=islower.3 islower_l.3
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | StringExtras.cpp | 107 if (check(i, isupper) && check(i + 1, isupper) && check(i + 2, islower)) in convertToSnakeFromCamelCase() 109 if ((check(i, islower) || check(i, isdigit)) && check(i + 1, isupper)) in convertToSnakeFromCamelCase() 124 if (capitalizeFirst && std::islower(input.front())) in convertToCamelFromSnakeCase() 131 if (input[pos] == '_' && pos != (e - 1) && std::islower(input[pos + 1])) in convertToCamelFromSnakeCase()
|
/freebsd/sys/netpfil/ipfilter/netinet/ |
H A D | ip_proxy.h | 140 # ifndef islower 141 # define islower(x) (((unsigned)(x) >= 'a') && ((unsigned)(x) <= 'z')) macro 144 # define isalpha(x) (isupper(x) || islower(x))
|
/freebsd/usr.bin/localedef/bootstrap/ |
H A D | ctype.h | 51 int (islower)(int); variable
|
/freebsd/crypto/openssh/openbsd-compat/ |
H A D | charclass.h | 22 { "lower", islower },
|
/freebsd/contrib/flex/src/ |
H A D | ccl.c | 298 return isupper (c) ? tolower (c) : (islower (c) ? toupper (c) : c); in reverse_case() 304 return (isupper (c) || islower (c)) ? true : false; in has_case()
|
/freebsd/contrib/smbfs/lib/smb/ |
H A D | subr.c | 232 islower(ch) ? ('a' + (ch - 'a' + 13) % 26) : ch); in smb_simplecrypt() 271 islower(ch) ? ('a' + (ch - 'a' + 13) % 26) : ch); in smb_simpledecrypt()
|
/freebsd/contrib/llvm-project/libcxx/modules/std.compat/ |
H A D | cctype.inc | 17 using ::islower _LIBCPP_USING_IF_EXISTS;
|
/freebsd/contrib/byacc/test/ |
H A D | calc.y | 97 if( islower( c )) { in yylex()
|
H A D | calc_code_default.y | 100 if( islower( c )) { in yylex()
|
H A D | calc_code_imports.y | 100 if( islower( c )) { in yylex()
|
H A D | calc_code_provides.y | 100 if( islower( c )) { in yylex()
|
H A D | calc_code_requires.y | 100 if( islower( c )) { in yylex()
|
H A D | code_calc.y | 105 if( islower( c )) { in yylex()
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | cctype.cppm |
|