Searched defs:isascii (Results 1 - 7 of 7) sorted by relevance

/external/syslinux/com32/include/
H A Dctype.h49 __ctype_inline int isascii(int __c) function
/external/python/cpython2/Lib/curses/
H A Dascii.py56 def isascii(c): return _ctoi(c) <= 127 # ? function
/external/python/cpython3/Lib/curses/
H A Dascii.py56 def isascii(c): return 0 <= _ctoi(c) <= 127 # ? function
/external/freetype/src/tools/ftrandom/
H A Dftrandom.c96 unsigned int isascii: 1; member in struct:fontlist
273 item->isbinary = item->isascii = item->ishex = false;
307 item->isascii = true;
473 else if ( item->isascii )
/external/icu/icu4c/source/tools/tzcode/
H A Dzdump.c37 #ifndef isascii
38 #define isascii(x) 1 macro
39 #endif /* !defined isascii */
298 while (isascii((unsigned char) *cp) && isalpha((unsigned char) *cp))
308 if (isascii((unsigned char) *cp) &&
H A Dzic.c60 ** only if isascii(C) || C == EOF. Modern hosts obey the C Standard,
62 ** Neither the C Standard nor Posix require that `isascii' exist.
64 ** If isascii is not defined, the isascii check succeeds trivially.
67 #ifndef isascii
68 #define isascii(x) 1 macro
2856 return (isascii(a) && isupper(a)) ? tolower(a) : a;
2923 while (isascii((unsigned char) *cp) &&
2942 (!isascii(*cp) || !isspace((unsigned char) *cp)));
2943 if (isascii(*c
[all...]
/external/libxml2/
H A Dtrio.c324 #if !defined(HAVE_ISASCII) && !defined(isascii)
326 # define isascii(x) ((unsigned int)(x) < 128) macro
1240 if (! isascii(format[index]))
3113 if (! isascii(format[index]))
5526 if (isascii(self->current))
5694 if (isascii(self->current))
6082 if (! isascii(format[index]))

Completed in 935 milliseconds