Home
last modified time | relevance | path

Searched refs:ISGRAPH (Results 1 – 20 of 20) sorted by relevance

/netbsd/src/external/bsd/nvi/dist/common/
Dmultibyte.h53 #define ISGRAPH iswgraph macro
86 #define ISGRAPH isgraph macro
/netbsd/src/lib/libc/gen/
Dvis.c124 #define ISGRAPH(flags, c) \ macro
261 if (ISGRAPH(flags, c) && !iswoctal(c)) { in do_mbyte()
313 if (!iswextra && (ISGRAPH(flags, c) || iswwhite(c) || in do_svis()
/netbsd/src/external/gpl2/xcvs/dist/lib/
Dfnmatch.c104 # define ISGRAPH(c) (ISASCII (c) && isgraph (c)) macro
106 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c)) macro
Dfnmatch_loop.c299 || (STREQ (str, L("graph")) && ISGRAPH ((UCHAR) *n)) in FCT()
/netbsd/src/external/bsd/nvi/dist/regex/
Dregex2.h173 #define ISWORD(c) ((c) == '_' || (ISGRAPH((UCHAR_T)c) && !ISPUNCT((UCHAR_T)c)))
/netbsd/src/external/gpl3/binutils/dist/include/
Dsafe-ctype.h94 #define ISGRAPH(c) _sch_test(c, _sch_isgraph) macro
/netbsd/src/external/gpl3/gdb/dist/include/
Dsafe-ctype.h94 #define ISGRAPH(c) _sch_test(c, _sch_isgraph) macro
/netbsd/src/external/gpl3/gcc/dist/include/
Dsafe-ctype.h94 #define ISGRAPH(c) _sch_test(c, _sch_isgraph) macro
/netbsd/src/external/bsd/nvi/dist/vi/
Dvi.h14 #define inword(ch) ((ch) == '_' || (ISGRAPH((UCHAR_T)ch) && !ISPUNCT((UCHAR_T)ch)))
/netbsd/src/external/gpl3/gcc/dist/fixincludes/
Dfixincl.c704 if (! ISGRAPH( ch )) in quoted_file_exists()
/netbsd/src/external/ibm-public/postfix/dist/src/util/
Dsys_defs.h1779 #define ISGRAPH(c) (ISASCII(c) && isgraph((unsigned char)(c))) macro
/netbsd/src/external/gpl3/gdb/dist/libiberty/
Dregex.c228 # define ISGRAPH(c) (ISASCII (c) && isgraph (c)) macro
230 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c)) macro
3291 || (is_graph && ISGRAPH (ch)) in PREFIX()
Dfunctions.texi611 @deffnx Extension ISGRAPH (@var{c})
/netbsd/src/external/gpl3/binutils/dist/libiberty/
Dregex.c228 # define ISGRAPH(c) (ISASCII (c) && isgraph (c)) macro
230 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c)) macro
3291 || (is_graph && ISGRAPH (ch)) in PREFIX()
Dfunctions.texi611 @deffnx Extension ISGRAPH (@var{c})
/netbsd/src/external/gpl3/gcc/dist/libiberty/
Dregex.c228 # define ISGRAPH(c) (ISASCII (c) && isgraph (c)) macro
230 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c)) macro
3291 || (is_graph && ISGRAPH (ch)) in PREFIX()
Dfunctions.texi611 @deffnx Extension ISGRAPH (@var{c})
/netbsd/src/external/gpl3/gcc/dist/libcpp/
Dcharset.cc1577 if (ISGRAPH (c)) in convert_escape()
/netbsd/src/external/gpl3/gcc/dist/gcc/cp/
DChangeLog-1998400 (readescape): Use ISGRAPH.
401 (yyerror): Use ISGRAPH.
/netbsd/src/external/gpl3/gcc/dist/gcc/
DChangeLog-19993926 warning. Use ISGRAPH to identify printable chars.
8458 * c-common.c: Use ISGRAPH, ISLOWER, toupper.
11615 (readescape): Use ISXDIGIT and ISGRAPH.