Home
last modified time | relevance | path

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

12345678910>>...22

/netbsd/usr.sbin/makefs/cd9660/
H A Dcd9660_strings.c59 if (islower((unsigned char)str[p]) ) in cd9660_uppercase_characters()
95 if (islower((unsigned char)*c) ) in cd9660_valid_a_chars()
119 if (islower((unsigned char)*c) ) in cd9660_valid_d_chars()
/netbsd/external/cddl/osnet/dist/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')
/netbsd/sys/external/bsd/acpica/dist/tools/acpisrc/
H A Dascase.c310 if (!islower ((int) *SubString)) in AsMixedCaseToUnderscores()
323 ((islower ((int) SubBuffer[1])) || isdigit ((int) SubBuffer[1]))) in AsMixedCaseToUnderscores()
332 while (islower ((int) *SubBuffer) || in AsMixedCaseToUnderscores()
555 (islower ((int) SubBuffer[1]))) in AsLowerCaseIdentifiers()
602 if ((islower ((int) SubBuffer[i])) && in AsUppercaseTokens()
/netbsd/external/apache2/llvm/dist/libcxx/include/
H A Dcctype25 int islower(int c);
70 #ifdef islower
71 #undef islower
109 using ::islower;
H A Dctype.h48 #undef islower
/netbsd/tests/usr.bin/xlint/lint1/
H A Dmsg_342.c23 int islower(int);
53 islower(c); in cover_is_ctype_function()
/netbsd/external/gpl3/gcc.old/dist/gcc/d/
H A Dd-system.h45 #undef islower
46 #define islower(c) ISLOWER(c) macro
/netbsd/external/gpl3/gdb/dist/include/
H A Dsafe-ctype.h133 #undef islower
134 #define islower(c) do_not_use_islower_with_safe_ctype macro
/netbsd/external/gpl3/binutils.old/dist/include/
H A Dsafe-ctype.h133 #undef islower
134 #define islower(c) do_not_use_islower_with_safe_ctype macro
/netbsd/external/gpl3/binutils/dist/include/
H A Dsafe-ctype.h133 #undef islower
134 #define islower(c) do_not_use_islower_with_safe_ctype macro
/netbsd/external/gpl3/gcc.old/dist/include/
H A Dsafe-ctype.h133 #undef islower
134 #define islower(c) do_not_use_islower_with_safe_ctype macro
/netbsd/external/gpl3/gdb.old/dist/include/
H A Dsafe-ctype.h133 #undef islower
134 #define islower(c) do_not_use_islower_with_safe_ctype macro
/netbsd/external/gpl3/gcc/dist/include/
H A Dsafe-ctype.h133 #undef islower
134 #define islower(c) do_not_use_islower_with_safe_ctype macro
/netbsd/external/apache2/llvm/dist/llvm/lib/Support/
H A DStringExtras.cpp124 if (capitalizeFirst && std::islower(input.front())) in convertToCamelFromSnakeCase()
131 if (input[pos] == '_' && pos != (e - 1) && std::islower(input[pos + 1])) in convertToCamelFromSnakeCase()
/netbsd/sys/external/bsd/ipf/netinet/
H A Dip_proxy.h146 # ifndef islower
147 # define islower(x) (((unsigned)(x) >= 'a') && ((unsigned)(x) <= 'z')) macro
150 # define isalpha(x) (isupper(x) || islower(x))
/netbsd/usr.bin/config/
H A Dmkheaders.c325 if (islower((unsigned char)*cp)) in locators_print()
337 if (islower((unsigned char)*cp)) in locators_print()
544 *dst++ = (char)(islower((u_char)c) ? toupper((u_char)c) : c); in cntname()
/netbsd/sys/lib/libkern/
H A Dlibkern.h70 LIBKERN_INLINE int islower(int) __unused;
167 islower(int ch) in islower() function
175 return (isupper(ch) || islower(ch)); in isalpha()
225 if (islower(ch)) in toupper()
/netbsd/external/bsd/flex/dist/src/
H A Dccl.c299 return isupper (c) ? tolower (c) : (islower (c) ? toupper (c) : c); in reverse_case()
305 return (isupper (c) || islower (c)) ? true : false; in has_case()
/netbsd/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_global/
H A Dcctype53 #undef islower
69 using ::islower;
/netbsd/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_std/
H A Dcctype53 #undef islower
69 using ::islower;
/netbsd/external/gpl3/gcc/dist/libstdc++-v3/include/c_std/
H A Dcctype53 #undef islower
69 using ::islower;
/netbsd/external/gpl3/gcc/dist/libstdc++-v3/include/c_global/
H A Dcctype53 #undef islower
69 using ::islower;
/netbsd/games/cribbage/
H A Dio.c315 if (islower(c)) in getuchar()
412 if (islower((unsigned char)Msgbuf[0]) && Msgbuf[1] != ')') in endmsg()
553 if (islower(c)) in get_line()
/netbsd/external/bsd/flex/dist/examples/manual/
H A Duser_act.lex23 if(islower(yytext[loop])){
/netbsd/external/bsd/openldap/dist/include/ac/
H A Dctype.h28 # define TOUPPER(c) (islower(c) ? toupper(c) : (c))

12345678910>>...22