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

  /src/external/apache2/llvm/dist/libcxx/include/
ctype.h 21 int isgraph(int c);
47 #undef isgraph macro
  /src/sys/sys/
ctype_inline.h 52 #define isgraph(c) ((int)((_ctype_tab_ + 1)[(c)] & _CTYPE_G)) macro
  /src/sys/lib/libkern/
libkern.h 78 LIBKERN_INLINE int isgraph(int) __unused;
207 isgraph(int ch) function
  /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/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/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/external/gpl3/gdb.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/gdb/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/dist/libstdc++-v3/include/bits/
locale_facets.h 2673 isgraph(_CharT __c, const locale& __loc) function
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
locale_facets.h 2661 isgraph(_CharT __c, const locale& __loc) function
  /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)

Completed in 74 milliseconds