Home
last modified time | relevance | path

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

12345678

/freebsd/usr.sbin/makefs/cd9660/
H A Dcd9660_strings.c52 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 Dstrtolctype.h50 #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 Dstrtolctype.h50 #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/llvm/lib/Support/
H A DStringExtras.cpp107 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/contrib/llvm-project/libcxx/include/
H A Dcctype25 int islower(int c);
79 #ifdef islower
80 # undef islower
117 using ::islower _LIBCPP_USING_IF_EXISTS;
H A Dctype.h50 # undef islower
/freebsd/sys/sys/
H A Dctype.h61 islower(int c) in islower() function
69 return (isupper(c) || islower(c)); in isalpha()
/freebsd/sys/contrib/ncsw/inc/
H A Dctype_ext.h61 #define islower(c) ((__ismask(c)&(_L)) != 0) macro
80 if (islower(c)) in __toupper()
/freebsd/usr.bin/caesar/
H A Dcaesar.c50 islower(ch) ? ('a' + (ch - 'a' + perm) % 26) : ch) : ch
93 if (islower(ch)) in main()
/freebsd/include/
H A Dctype.h53 int islower(int);
92 #define islower(c) __sbistype((c), _CTYPE_L) macro
/freebsd/lib/libc/locale/
H A Disctype.c112 #undef islower
114 islower(int c) in islower() function
/freebsd/usr.bin/localedef/bootstrap/
H A Dctype.h51 int (islower)(int); variable
/freebsd/crypto/openssh/openbsd-compat/
H A Dcharclass.h22 { "lower", islower },
/freebsd/sys/netpfil/ipfilter/netinet/
H A Dip_proxy.h140 # ifndef islower
141 # define islower(x) (((unsigned)(x) >= 'a') && ((unsigned)(x) <= 'z')) macro
144 # define isalpha(x) (isupper(x) || islower(x))
/freebsd/contrib/flex/src/
H A Dccl.c298 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/llvm-project/libcxx/modules/std.compat/
H A Dcctype.inc17 using ::islower;
/freebsd/contrib/smbfs/lib/smb/
H A Dsubr.c232 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/
H A Dcctype.inc17 using std::islower;
/freebsd/contrib/byacc/test/
H A Dcalc.y97 if( islower( c )) { in yylex()
H A Dcalc_code_default.y100 if( islower( c )) { in yylex()
H A Dcalc_code_imports.y100 if( islower( c )) { in yylex()
H A Dcalc_code_provides.y100 if( islower( c )) { in yylex()
H A Dcalc_code_requires.y100 if( islower( c )) { in yylex()
H A Dcalc_code_top.y100 if( islower( c )) { in yylex()
H A Dcode_calc.y105 if( islower( c )) { in yylex()

12345678