Searched refs:isascii (Results 1 - 24 of 24) sorted by relevance

/xsrc/external/mit/libXaw/dist/src/
H A DXawI18n.h84 # ifndef isascii
85 # define isascii(c) ((unsigned char)(c) < 127) macro
91 # define iswspace(c) (isascii(c) && isspace(toascii(c)))
H A DPanner.c573 for (; isascii((unsigned char)*s) && isspace((unsigned char)*s); s++) /* skip white space */
588 for (cp = s; isascii((unsigned char)*s) && (isdigit((unsigned char)*s) || *s == '.'); s++)
593 for (; isascii((unsigned char)*s) && isspace((unsigned char)*s); s++)
/xsrc/external/mit/MesaLib/dist/src/freedreno/decode/
H A Dutil.h107 #define is_ok_ascii(c) (isascii(c) && ((c == '\t') || !iscntrl(c)))
173 printf("%c", (isascii(c) && !iscntrl(c)) ? c : '.');
189 printf("%c", (isascii(c) && !iscntrl(c)) ? c : '.');
H A Dpgmdump2.c162 printf("%c", (isascii(c) && !iscntrl(c)) ? c : '.');
172 if ((d < state->sz) && isascii(state->buf[d]) &&
173 (strlen(&state->buf[d]) > 2) && isascii(state->buf[d + 1]))
H A Dcffdec.c2126 if (isascii(buf[i]))
/xsrc/external/mit/bitmap/dist/
H A Datobm.c83 if (!((isascii(c) && isalnum(c)) || c == '_')) name[i] = '_';
227 int removespace = (((isascii(chars[0]) && isspace(chars[0])) ||
228 (isascii(chars[1]) && isspace(chars[1]))) ? 0 : 1);
243 for (cp = buf; *cp && isascii(*cp) && isspace(*cp); cp++) ;
255 for (; --newline > cp && isascii(*newline) && isspace(*newline); );
/xsrc/external/mit/ctwm/dist/
H A Dutil.h51 #define Isascii(c) isascii((int)(unsigned char)(c))
/xsrc/external/mit/xauth/dist/
H A Dparsedpy.c36 #include <ctype.h> /* for isascii() and isdigit() */
200 for (cp = ptr; *cp && isascii(*cp) && isdigit(*cp); cp++) ;
219 for (cp = ptr; *cp && isascii(*cp) && isdigit(*cp); cp++) ;
H A Dprocess.c238 for ( ; *s && isascii(*s) && isspace(*s); s++)
250 for ( ; *s && isascii(*s) && !isspace(*s); s++)
357 while ((c = getc (fp)) != EOF && isascii(c) && c != '\n' && isspace(c)) ;
582 if (!isascii(*s)) return -1;
/xsrc/external/mit/xorgproto/dist/include/X11/
H A DXw32defs.h36 # define isascii __isascii macro
/xsrc/external/mit/freetype/dist/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 )
/xsrc/external/mit/ctwm/dist/cmake_files/
H A Dcompiler_feature_checks.cmake110 # isascii falls into XOPEN on glibc, POSIX on Illumos.
111 _check_func_flag(isascii ctype.h)
/xsrc/external/mit/libX11/dist/src/
H A DRdBitF.c98 if (isascii(ch) && isxdigit(ch)) {
/xsrc/external/mit/libXmu/dist/src/
H A DRdBitF.c132 if (isascii(ch) && isxdigit(ch)) {
/xsrc/external/mit/xrefresh/dist/
H A Dxrefresh.c129 if (isascii (*cp) && isupper (*cp)) *cp = tolower (*cp);
/xsrc/external/mit/xtrap/dist/
H A Dchparse.c230 if (isascii(c) && isprint(c)) {
/xsrc/external/mit/xfindproxy/dist/
H A Dxfindproxy.c86 if (!isascii(*s)) return -1;
/xsrc/external/mit/xkill/dist/
H A Dxkill.c253 if (!(isascii (*cp) && isdigit (*cp))) return (0); /* bogus name */
/xsrc/external/mit/MesaGLUT/dist/src/glut/glx/
H A Dcapturexfont.c67 of ASCII characters (ie, TRUE for isascii) and capturexfont
69 #define PRINTABLE(ch) (isascii(ch) ? isprint(ch) : 0)
H A Dwin32_winproc.c159 if (isascii(key) && (key != 0)) {
/xsrc/external/mit/iceauth/dist/
H A Dprocess.c257 for ( ; *s && isascii(*s) && isspace(*s); s++)
268 for ( ; *s && isascii(*s) && !isspace(*s); s++)
414 if (!isascii(*s)) return -1;
/xsrc/external/mit/xmodmap/dist/
H A Dhandle.c845 a1 = (isascii(*a) && isupper(*a)) ? tolower(*a) : *a;
846 b1 = (isascii(*b) && isupper(*b)) ? tolower(*b) : *b;
/xsrc/external/mit/xrdb/dist/
H A Dxrdb.c360 *temp && *temp != '\n' && isascii(*temp) && isspace(*temp);
/xsrc/external/mit/xtrans/dist/
H A DXtranssock.c1551 if (isascii (host[0]) && isdigit (host[0])) {

Completed in 61 milliseconds