| /src/external/bsd/flex/dist/examples/fastwc/ |
| mywc.c | 13 if (isgraph(c)) { 20 } while (isgraph(c));
|
| /src/external/apache2/llvm/dist/libcxx/include/ |
| ctype.h | 21 int isgraph(int c); 47 #undef isgraph macro
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/c_compatibility/ |
| ctype.h | 39 using std::isgraph;
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_compatibility/ |
| ctype.h | 39 using std::isgraph;
|
| /src/tests/usr.bin/xlint/lint1/ |
| msg_342.c | 22 int isgraph(int); 50 /* expect+1: warning: argument to 'isgraph' must be 'unsigned char' or EOF, not 'char' [341] */ 51 isgraph(c);
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdc/ |
| ctype.d | 33 pure int isgraph(int c);
|
| /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))
|
| /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/include/ |
| ctype.h | 50 int isgraph(int);
|
| /src/sys/sys/ |
| ctype_inline.h | 52 #define isgraph(c) ((int)((_ctype_tab_ + 1)[(c)] & _CTYPE_G)) macro
|
| /src/tests/usr.bin/cc/ |
| t_ctype_abuse.sh | 97 isgraph \
|
| /src/external/bsd/ntp/dist/libntp/ |
| numtoa.c | 74 * isgraph() is similar to isprint() but excludes space. 79 if (!isgraph((int)*cp)) {
|
| /src/external/bsd/wpa/dist/src/wps/ |
| httpread.c | 111 end1 = !isgraph(c1); 112 end2 = !isgraph(c2); 162 while (isgraph(*hbp)) 180 while (isgraph(*hbp)) 206 if (!isgraph(*hbp)) 215 while (isgraph(*hbp)) 253 while (isgraph(*hbp)) 263 while (isgraph(*hbp)) 304 if (!isgraph(*hbp))
|
| /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/tests/lib/libc/gen/ |
| h_ctype_abuse.c | 62 M(ISGRAPH, isgraph) \
|
| t_ctype.c | 87 static int isgraph_wrapper(int ch) { return isgraph(ch); } 263 test_use("isgraph", ctypefn); 1039 DEF_TEST_ABUSE(isgraph) 1054 DEF_TEST_ABUSE_OVERRIDE(isgraph) 1069 DEF_TEST_USE(isgraph) 1106 ATF_CHECK(isgraph(ydots)); 1141 ATF_CHECK(isgraph(Hard)); 1176 ATF_CHECK(isgraph(ya)); 1195 ADD_TEST_ABUSE(tp, isgraph); 1210 ADD_TEST_ABUSE_OVERRIDE(tp, isgraph); [all...] |
| /src/crypto/external/apache2/openssl/dist/test/ |
| ctype_internal_test.c | 43 && TEST_int_eq(isgraph(n) != 0, ossl_isgraph(n) != 0)
|
| /src/crypto/external/bsd/openssl/dist/test/ |
| ctype_internal_test.c | 43 && TEST_int_eq(isgraph(n) != 0, ossl_isgraph(n) != 0)
|
| /src/crypto/external/bsd/openssl.old/dist/test/ |
| ctype_internal_test.c | 43 && TEST_int_eq(isgraph(n) != 0, ossl_isgraph(n) != 0)
|
| /src/external/bsd/nvi/dist/common/ |
| multibyte.h | 53 #define ISGRAPH iswgraph 86 #define ISGRAPH isgraph
|