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

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libc/citrus/
citrus_bcs_strtol.c 55 #undef isalpha macro
56 #define isalpha(c) _bcs_isalpha(c) macro
citrus_bcs_strtoul.c 60 #undef isalpha macro
61 #define isalpha(c) _bcs_isalpha(c) macro
citrus_bcs.h 55 _CITRUS_BCS_PRED(isalpha, _citrus_bcs_isupper(c) || _citrus_bcs_islower(c))
  /src/external/cddl/osnet/dist/common/util/
strtolctype.h 49 #define isalnum(ch) (isalpha(ch) || isdigit(ch))
50 #define isalpha(ch) (isupper(ch) || islower(ch)) macro
  /src/external/apache2/llvm/dist/libcxx/include/
ctype.h 17 int isalpha(int c);
43 #undef isalpha macro
  /src/external/gpl3/gcc/dist/fixincludes/tests/base/
ctype.h 75 # define isalpha(__c) (__SB_masks ? (int)__SB_masks[__c] & _IS macro
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/c_compatibility/
ctype.h 36 using std::isalpha;
  /src/external/gpl3/gcc.old/dist/fixincludes/tests/base/
ctype.h 75 # define isalpha(__c) (__SB_masks ? (int)__SB_masks[__c] & _IS macro
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_compatibility/
ctype.h 36 using std::isalpha;
  /src/tests/usr.bin/xlint/lint1/
msg_342.c 18 int isalpha(int);
42 /* expect+1: warning: argument to 'isalpha' must be 'unsigned char' or EOF, not 'char' [341] */
43 isalpha(c);
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdc/
ctype.d 25 pure int isalpha(int c);
  /src/sys/arch/cobalt/stand/boot/
devopen.c 70 #define isalpha(c) (((c) >= 'a') && ((c) <= 'z')) macro
73 for (i = 0; isalpha(fname[i]) && (i < devlen); i++)
92 if (!isalpha(fname[i]))
  /src/sys/arch/hpc/stand/hpcboot/
file_ufs.cpp 76 else if (isalpha((unsigned char)name[0]) &&
77 isalpha((unsigned char)name[1]) &&
78 isalpha((unsigned char)name[2]) &&
  /src/sys/arch/mmeye/stand/boot/
devopen.c 70 #define isalpha(c) (((c) >= 'a') && ((c) <= 'z')) macro
73 for (i = 0; isalpha(fname[i]) && (i < devlen); i++)
85 if (!isalpha(fname[i]))
  /src/games/hangman/
getguess.c 60 if (isalpha(ch)) {
  /src/lib/libc/regex/
utils.h 54 #define iswalpha(a) isalpha(a)
  /src/lib/libform/
type_alpha.c 120 while(isalpha((unsigned char)buf[cur]))
162 return (isalpha(c) ? TRUE : FALSE);
  /src/bin/csh/
char.h 71 (isalpha((unsigned char) (c)) || (c) == '_'))
77 #define Isalpha(c) (((c) & QUOTE) ? 0 : isalpha((unsigned char) (c)))
89 #define Isalpha(c) (cmap(c,_LET) && !(((c) & META) && AsciiOnly))
  /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/
missing_files.py 54 def isalpha(c): function
58 return isalpha(c) or isdigit(c)
  /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/
missing_files.py 54 def isalpha(c): function
58 return isalpha(c) or isdigit(c)
  /src/include/
ctype.h 47 int isalpha(int);
  /src/lib/libc/gen/
dehumanize_number.c 78 if (isalpha((unsigned char)unit)) {
  /src/sys/arch/ia64/stand/common/
strtol.c 117 else if (isalpha(c))
  /src/sys/arch/mmeye/mmeye/
autoconf.c 119 !isalpha(bi->bootdev[p]))
  /src/sys/sys/
ctype_inline.h 49 #define isalpha(c) ((int)((_ctype_tab_ + 1)[(c)] & _CTYPE_A)) macro

Completed in 23 milliseconds

1 2 3 4 5 6 7 8 91011>>