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

  /src/external/bsd/nvi/dist/common/
multibyte.h 53 #define ISGRAPH iswgraph
86 #define ISGRAPH isgraph
  /src/external/gpl2/gmake/dist/glob/
fnmatch.c 72 # ifdef isgraph
73 # define ISGRAPH(c) (ISASCII (c) && isgraph (c))
75 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
370 || (STREQ (str, "graph") && ISGRAPH ((unsigned char) *n))
  /src/external/gpl2/grep/dist/src/
system.h 170 #ifndef isgraph
171 # define isgraph(C) (isprint(C) && !isspace(C)) macro
189 #define ISGRAPH(C) (IN_CTYPE_DOMAIN (C) && isgraph (C))
dfa.c 64 #ifndef isgraph
65 #define isgraph(C) (isprint(C) && !isspace(C)) macro
78 #define ISGRAPH(C) isgraph(C)
90 #define ISGRAPH(C) (isascii(C) && isgraph(C))
668 FUNC(is_graph, ISGRAPH)
  /src/external/gpl2/xcvs/dist/lib/
fnmatch.c 103 # ifdef isgraph
104 # define ISGRAPH(c) (ISASCII (c) && isgraph (c))
106 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
  /src/external/gpl3/binutils/dist/include/
safe-ctype.h 94 #define ISGRAPH(c) _sch_test(c, _sch_isgraph)
131 #undef isgraph macro
132 #define isgraph(c) do_not_use_isgraph_with_safe_ctype macro
  /src/external/gpl3/binutils.old/dist/include/
safe-ctype.h 94 #define ISGRAPH(c) _sch_test(c, _sch_isgraph)
131 #undef isgraph macro
132 #define isgraph(c) do_not_use_isgraph_with_safe_ctype macro
  /src/external/gpl3/gcc.old/dist/include/
safe-ctype.h 94 #define ISGRAPH(c) _sch_test(c, _sch_isgraph)
131 #undef isgraph macro
132 #define isgraph(c) do_not_use_isgraph_with_safe_ctype macro
  /src/lib/libc/gen/
vis.c 107 #define iscgraph(c) isgraph(c)
116 rv = isgraph(c);
124 #define ISGRAPH(flags, c) \
261 if (ISGRAPH(flags, c) && !iswoctal(c)) {
313 if (!iswextra && (ISGRAPH(flags, c) || iswwhite(c) ||
  /src/external/gpl2/gettext/dist/gettext-tools/libgrep/
dfa.c 49 #ifndef isgraph
50 #define isgraph(C) (isprint(C) && !isspace(C)) macro
63 #define ISGRAPH(C) isgraph(C)
75 #define ISGRAPH(C) (isascii(C) && isgraph(C))
642 FUNC(is_graph, ISGRAPH)
regex.c 197 # ifdef isgraph
198 # define ISGRAPH(c) (IN_CTYPE_DOMAIN (c) && isgraph (c))
200 # define ISGRAPH(c) (IN_CTYPE_DOMAIN (c) && isprint (c) && !isspace (c))
3299 || (is_graph && ISGRAPH (ch))
  /src/external/gpl3/binutils/dist/libiberty/
regex.c 228 # ifdef isgraph
229 # define ISGRAPH(c) (ISASCII (c) && isgraph (c))
231 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
3304 || (is_graph && ISGRAPH (ch))
  /src/external/gpl3/binutils.old/dist/libiberty/
regex.c 228 # ifdef isgraph
229 # define ISGRAPH(c) (ISASCII (c) && isgraph (c))
231 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
3304 || (is_graph && ISGRAPH (ch))
  /src/external/gpl3/gcc.old/dist/libiberty/
regex.c 228 # ifdef isgraph
229 # define ISGRAPH(c) (ISASCII (c) && isgraph (c))
231 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
3304 || (is_graph && ISGRAPH (ch))
  /src/external/gpl2/diffutils/dist/lib/
regex.c 232 # ifdef isgraph
233 # define ISGRAPH(c) (IN_CTYPE_DOMAIN (c) && isgraph (c))
235 # define ISGRAPH(c) (IN_CTYPE_DOMAIN (c) && isprint (c) && !isspace (c))
3371 || (is_graph && ISGRAPH (ch))
  /src/external/gpl2/grep/dist/lib/
regex.c 244 #ifdef isgraph
245 # define ISGRAPH(c) (ISASCII (c) && isgraph (c))
247 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
3292 || (is_graph && ISGRAPH (ch))

Completed in 123 milliseconds