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

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/unbound/dist/testcode/
readhex.c 74 if(!isalnum((unsigned char)*p))
78 log_assert(*p && isalnum((unsigned char)*p));
readhex.c 74 if(!isalnum((unsigned char)*p))
78 log_assert(*p && isalnum((unsigned char)*p));
  /src/external/apache2/llvm/dist/libcxx/include/
ctype.h 16 int isalnum(int c);
42 #undef isalnum macro
ctype.h 16 int isalnum(int c);
42 #undef isalnum macro
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/c_compatibility/
ctype.h 35 using std::isalnum;
ctype.h 35 using std::isalnum;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_compatibility/
ctype.h 35 using std::isalnum;
ctype.h 35 using std::isalnum;
  /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/
missing_files.py 26 # Functions str.isascii() and str.isalnum are available starting Python
31 def isalnum(ch): function
32 return ch.isalnum()
36 # str.isalnum() so provide our own.
38 # We could import isalnum() and isascii() from the curses library,
57 def isalnum(c): function
83 if not isascii(ch) or not (isalnum(ch) or ch in "_-"):
missing_files.py 26 # Functions str.isascii() and str.isalnum are available starting Python
31 def isalnum(ch): function
32 return ch.isalnum()
36 # str.isalnum() so provide our own.
38 # We could import isalnum() and isascii() from the curses library,
57 def isalnum(c): function
83 if not isascii(ch) or not (isalnum(ch) or ch in "_-"):
  /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/
missing_files.py 26 # Functions str.isascii() and str.isalnum are available starting Python
31 def isalnum(ch): function
32 return ch.isalnum()
36 # str.isalnum() so provide our own.
38 # We could import isalnum() and isascii() from the curses library,
57 def isalnum(c): function
83 if not isascii(ch) or not (isalnum(ch) or ch in "_-"):
missing_files.py 26 # Functions str.isascii() and str.isalnum are available starting Python
31 def isalnum(ch): function
32 return ch.isalnum()
36 # str.isalnum() so provide our own.
38 # We could import isalnum() and isascii() from the curses library,
57 def isalnum(c): function
83 if not isascii(ch) or not (isalnum(ch) or ch in "_-"):
  /src/tests/usr.bin/xlint/lint1/
msg_342.c 17 int isalnum(int);
40 /* expect+1: warning: argument to 'isalnum' must be 'unsigned char' or EOF, not 'char' [341] */
41 isalnum(c);
msg_342.c 17 int isalnum(int);
40 /* expect+1: warning: argument to 'isalnum' must be 'unsigned char' or EOF, not 'char' [341] */
41 isalnum(c);
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdc/
ctype.d 23 pure int isalnum(int c);
ctype.d 23 pure int isalnum(int c);
  /src/lib/libc/regex/
utils.h 55 #define iswalnum(a) isalnum(a)
utils.h 55 #define iswalnum(a) isalnum(a)
  /src/usr.bin/vgrind/RETEST/
retest.c 77 if (isalnum(*match))
retest.c 77 if (isalnum(*match))
  /src/external/bsd/byacc/dist/
mstring.c 187 if (isalnum(UCH(a[-1])) && isalnum(UCH(*b)))
192 if (isalnum(UCH(b[-1])) && isalnum(UCH(*a)))
mstring.c 187 if (isalnum(UCH(a[-1])) && isalnum(UCH(*b)))
192 if (isalnum(UCH(b[-1])) && isalnum(UCH(*a)))
  /src/external/cddl/osnet/dist/common/util/
strtolctype.h 49 #define isalnum(ch) (isalpha(ch) || isdigit(ch)) macro
67 * The following macro is a version of isalnum() that limits alphabetic
strtolctype.h 49 #define isalnum(ch) (isalpha(ch) || isdigit(ch)) macro
67 * The following macro is a version of isalnum() that limits alphabetic
  /src/lib/libform/
type_alnum.c 118 while(isalnum((unsigned char)buf[cur]))
158 return (isalnum(c) ? TRUE : FALSE);

Completed in 145 milliseconds

1 2 3 4 5 6 7 8 91011>>