HomeSort by: relevance | last modified time | path
    Searched defs:isascii (Results 1 - 10 of 10) sorted by relevancy

  /src/lib/libc/gen/
isascii.c 1 /* $NetBSD: isascii.c,v 1.4 2012/06/25 22:32:43 abs Exp $ */
41 __RCSID("$NetBSD: isascii.c,v 1.4 2012/06/25 22:32:43 abs Exp $");
48 isascii(int c) function
  /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/
missing_debug.py 25 # Functions str.isascii() and str.isalnum are available starting Python
27 def isascii(ch): function
28 return ch.isascii()
34 # Fall back to curses.ascii.isascii() and curses.ascii.isalnum() for
36 from curses.ascii import isalnum, isascii
57 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
28 def isascii(ch): function
29 return ch.isascii()
35 # Older version of Python doesn't have str.isascii() and
38 # We could import isalnum() and isascii() from the curses library,
60 def isascii(c): function
83 if not isascii(ch) or not (isalnum(ch) or ch in "_-"):
  /src/sys/sys/
ctype_inline.h 63 #define isascii(c) ((unsigned)(c) <= 0177) macro
  /src/external/bsd/cron/dist/
externs.h 37 #ifndef isascii
38 #define isascii(c) ((unsigned)(c)<=0177) macro
  /src/lib/libc/resolv/
res_init.c 154 #if !defined(isascii) /*%< XXX - could be a function */
155 # define isascii(c) (!(c & 0200)) macro
470 isascii(*cp) && !isspace((unsigned char)*cp))
480 isascii(*cp) &&
  /src/sys/lib/libkern/
libkern.h 70 LIBKERN_INLINE int isascii(int) __unused;
157 isascii(int ch) function
  /src/external/bsd/libbind/dist/resolv/
res_init.c 130 #if !defined(isascii) /*%< XXX - could be a function */
131 # define isascii(c) (!(c & 0200)) macro
425 isascii(*cp) && !isspace((unsigned char)*cp))
435 isascii(*cp) &&
  /src/external/gpl2/groff/dist/src/devices/xditview/
device.c 20 #ifndef isascii
21 #define isascii(c) (1) macro
308 if (!isascii(*p) || !isdigit((unsigned char)*p))
  /src/external/ibm-public/postfix/dist/src/util/
sys_defs.h 1105 #define isascii(c) ((unsigned)(c)<=0177) macro
1159 #define isascii(c) ((unsigned)(c)<=0177) macro
1770 * because the ISASCII() guard already ensures that the values are
1773 #define ISASCII(c) isascii(_UCHAR_(c))
1775 #define ISALNUM(c) (ISASCII(c) && isalnum((unsigned char)(c)))
1776 #define ISALPHA(c) (ISASCII(c) && isalpha((unsigned char)(c)))
1777 #define ISCNTRL(c) (ISASCII(c) && iscntrl((unsigned char)(c)))
1778 #define ISDIGIT(c) (ISASCII(c) && isdigit((unsigned char)(c)))
1779 #define ISGRAPH(c) (ISASCII(c) && isgraph((unsigned char)(c))
    [all...]

Completed in 33 milliseconds