Searched refs:islower (Results 1 – 25 of 168) sorted by relevance
1234567
47 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()
25 int islower(int c);79 #ifdef islower80 #undef islower118 using ::islower _LIBCPP_USING_IF_EXISTS;
50 #undef islower
91 #undef islower93 islower(int c) in islower() function97 DEF_STRONG(islower);
20 { "lower", islower },
57 #undef islower73 using ::islower;
59 #undef islower75 using ::islower;
5 use POSIX qw(isalpha islower);15 islower("a");
52 islower(ch) ? ('a' + (ch - 'a' + perm) % 26) : ch103 if (islower(ch)) in main()
73 int islower(int);143 __only_inline int islower(int _c) in islower() function259 return islower(_c); in islower_l()
117 #define islower(c) ((c) >= 'a' && (c) <= 'z') macro118 #define isalpha(c) (isupper(c)||islower(c))120 #define toupper(c) (islower(c)?((c) - 'a' + 'A'):(c))
220 *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()
27 __only_inline int islower(int _c);74 PROTO_NORMAL(islower);
123 if (capitalizeFirst && std::islower(input.front())) in convertToCamelFromSnakeCase()130 if (input[pos] == '_' && pos != (e - 1) && std::islower(input[pos + 1])) in convertToCamelFromSnakeCase()
61 check_bool(islower(i), iswlower(i), '6'); in test1()111 check_bool(islower(s[j]), iswlower(c), '6'); in test2()
307 return isupper(c) ? tolower(c) : (islower(c) ? toupper(c) : c); in reverse_case()314 return (isupper(c) || islower(c)) ? true : false; in has_case()
40 using std::islower;
289 if (islower(c)) in getuchar()396 if (islower((unsigned char)Msgbuf[0]) && Msgbuf[1] != ')') in endmsg()536 if (islower(c)) in get_line()
62 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A')); in inet_network()
74 if (!islower((unsigned char)*wp)) in getword()
96 if (islower(c)) in lton()
95 if (islower((unsigned char)*buf1)) { in getword()
99 #define ISLOWER(c) (islower((unsigned char)(c)))