HomeSort by: relevance | last modified time | path
    Searched refs:islower (Results 1 - 25 of 405) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/usr.sbin/makefs/cd9660/
cd9660_strings.c 59 if (islower((unsigned char)str[p]) )
95 if (islower((unsigned char)*c) )
119 if (islower((unsigned char)*c) )
  /src/external/cddl/osnet/dist/common/util/
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')
  /src/external/bsd/flex/dist/examples/manual/
user_act.lex 23 if(islower(yytext[loop])){
  /src/external/bsd/openldap/dist/include/ac/
ctype.h 28 # define TOUPPER(c) (islower(c) ? toupper(c) : (c))
  /src/sys/arch/ia64/stand/common/
interp_backslash.c 28 #define DIGIT(x) (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
  /src/external/apache2/llvm/dist/libcxx/include/
ctype.h 22 int islower(int c);
48 #undef islower macro
  /src/games/hangman/
getword.c 66 if (!islower((unsigned char)*wp))
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/c_compatibility/
ctype.h 40 using std::islower;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_compatibility/
ctype.h 40 using std::islower;
  /src/tests/usr.bin/xlint/lint1/
msg_342.c 23 int islower(int);
52 /* expect+1: warning: argument to 'islower' must be 'unsigned char' or EOF, not 'char' [341] */
53 islower(c);
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdc/
ctype.d 35 pure int islower(int c);
  /src/lib/libc/regex/
utils.h 53 #define iswlower(a) islower(a)
  /src/external/gpl2/groff/dist/src/libs/libgroff/
cmap.cpp 55 cmupper.v[i] = ISASCII(i) && islower(i) ? toupper(i) : i;
  /src/external/gpl2/mkhybrid/dist/
name.c 220 *result++ = (islower((unsigned char)*pnt) ? toupper((unsigned char)*pnt) : *pnt);
288 *result++ = islower((unsigned char)*pnt) ? toupper((unsigned char)*pnt) : *pnt;
  /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/
missing_files.py 48 def islower(c): function
55 return isupper(c) or islower(c)
  /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/
missing_files.py 48 def islower(c): function
55 return isupper(c) or islower(c)
  /src/games/battlestar/
getcom.c 100 if (islower((unsigned char)*buf1)) {
  /src/games/boggle/mkdict/
mkdict.c 86 if (!islower((unsigned char)*p))
  /src/include/
ctype.h 51 int islower(int);
  /src/lib/libc/citrus/
citrus_bcs.h 54 _CITRUS_BCS_PRED(islower, c >= 'a' && c <= 'z')
  /src/lib/libc/inet/
inet_network.c 89 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A'));
  /src/lib/libm/src/
s_nan.c 47 if (islower((unsigned char)s))
  /src/sys/arch/acorn32/stand/lib/
devopen.c 53 if (islower((unsigned char)*p))
  /src/sys/ddb/
db_write_cmd.c 57 show_old_val = islower((unsigned char)modif[0]);
  /src/sys/sys/
ctype_inline.h 53 #define islower(c) ((int)((_ctype_tab_ + 1)[(c)] & _CTYPE_L)) macro

Completed in 24 milliseconds

1 2 3 4 5 6 7 8 91011>>