Symbol: isgraph
include/ctype.h
253
return isgraph(_c);
include/ctype.h
72
int isgraph(int);
lib/libc/gen/charclass.h
19
{ "graph", isgraph },
lib/libc/gen/isctype.c
89
DEF_STRONG(isgraph);
lib/libc/gen/vis.c
61
isgraph(uc))
lib/libc/gen/vis.c
69
if (vis_safe && (c == '\b' || c == '\007' || c == '\r' || isgraph(uc)))
lib/libc/hidden/ctype.h
26
__only_inline int isgraph(int _c);
lib/libc/hidden/ctype.h
72
PROTO_NORMAL(isgraph);
lib/libc/locale/isctype_l.c
65
return isgraph(c);
lib/libcurses/tinfo/captoinfo.c
235
if (isgraph(c) && c != ',' && c != '\'' && c != '\\' && c != ':') {
lib/libcurses/tinfo/parse_entry.c
322
#define ok_TC2(s) (isgraph(UChar(s)) && (s) != '|')
lib/libcurses/tinfo/read_termcap.c
748
} else if (isgraph(UChar(ch))) {
lib/libcurses/trace/visbuf.c
77
} else if (is7bits((int) c) && (isgraph((int) c) || c == ' ')) {
lib/libz/trees.c
228
n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len] - 1));
lib/libz/trees.c
917
Tracecv(isgraph(lc), (stderr," '%c' ", lc));
libexec/login_radius/login_radius.c
224
while (isgraph((unsigned char)*s) && *s != '\\')
regress/lib/libc/locale/check_isw/check_isw.c
110
check_bool(isgraph(s[j]), iswgraph(c), '6');
regress/lib/libc/locale/check_isw/check_isw.c
60
check_bool(isgraph(i), iswgraph(i), '6');
sbin/unwind/libunbound/sldns/wire2str.c
840
else if(!(isascii((unsigned char)c) && isgraph((unsigned char)c)))
sys/dev/pci/drm/drm_ioctl.c
567
if (!isascii(value[i]) || !isgraph(value[i]))
sys/lib/libz/trees.c
228
n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len] - 1));
sys/lib/libz/trees.c
917
Tracecv(isgraph(lc), (stderr," '%c' ", lc));
usr.bin/awk/b.c
1133
{ "graph", 5, isgraph },
usr.bin/col/col.c
156
if (!isgraph(ch)) {
usr.bin/cvs/rcs.c
764
if (!isgraph(*cp) || (strchr(rcs_sym_invch, *cp) != NULL)) {
usr.bin/cvs/rcsparse.c
950
if (!isgraph(c)) {
usr.bin/cvs/rcsparse.c
985
} else if (!isgraph(c)) {
usr.bin/lex/flexdef.h
1105
#define b_isgraph(c) (isgraph(c)?true:false)
usr.bin/lex/parse.y
887
| CCE_GRAPH { CCL_EXPR(isgraph); }
usr.bin/lex/parse.y
908
| CCE_NEG_GRAPH { CCL_NEG_EXPR(isgraph); }
usr.bin/mandoc/term.c
870
f = (c == ASCII_HYPH || c > 127 || isgraph(c)) ?
usr.bin/mandoc/term.c
918
isgraph((unsigned char)word[i]))
usr.bin/rcs/rcs.c
1821
if (!isgraph(*cp) || (strchr(rcs_state_invch, *cp) != NULL)) {
usr.bin/rcs/rcs.c
643
if (!isgraph(*cp) || (strchr(rcs_sym_invch, *cp) != NULL)) {
usr.bin/rcs/rcsparse.c
949
if (!isgraph(c)) {
usr.bin/rcs/rcsparse.c
984
} else if (!isgraph(c)) {
usr.bin/rsync/charclass.h
19
{ "graph", isgraph },
usr.bin/tr/str.c
155
{ "graph", isgraph, },
usr.sbin/httpd/patterns.c
139
res = isgraph(c);
usr.sbin/unbound/sldns/wire2str.c
840
else if(!(isascii((unsigned char)c) && isgraph((unsigned char)c)))