| /src/external/gpl3/gdb.old/dist/gdbsupport/ |
| gdb-safe-ctype.h | 33 return isprint (ch); 42 #undef ISPRINT
|
| /src/external/gpl3/gdb/dist/gdbsupport/ |
| gdb-safe-ctype.h | 33 return isprint (ch); 42 #undef ISPRINT
|
| /src/external/gpl2/gmake/dist/glob/ |
| fnmatch.c | 75 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c)) 78 # define ISPRINT(c) (ISASCII (c) && isprint (c)) 372 || (STREQ (str, "print") && ISPRINT ((unsigned char) *n))
|
| /src/external/gpl2/grep/dist/src/ |
| system.h | 171 # define isgraph(C) (isprint(C) && !isspace(C)) 188 #define ISPRINT(C) (IN_CTYPE_DOMAIN (C) && isprint (C))
|
| dfa.c | 65 #define isgraph(C) (isprint(C) && !isspace(C)) 77 #define ISPRINT(C) isprint(C) 89 #define ISPRINT(C) (isascii(C) && isprint(C)) 667 FUNC(is_print, ISPRINT)
|
| /src/external/gpl2/xcvs/dist/diff/ |
| system.h | 217 #ifndef ISPRINT 218 #define ISPRINT(c) (CTYPE_DOMAIN (c) && isprint (c))
|
| /src/external/gpl2/xcvs/dist/lib/ |
| fnmatch.c | 106 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c)) 109 # define ISPRINT(c) (ISASCII (c) && isprint (c))
|
| /src/external/gpl3/binutils/dist/include/ |
| safe-ctype.h | 78 _sch_isgraph = _sch_isalnum|_sch_ispunct, /* isprint and not space */ 96 #define ISPRINT(c) _sch_test(c, _sch_isprint) 135 #undef isprint macro 136 #define isprint(c) do_not_use_isprint_with_safe_ctype macro
|
| /src/external/gpl3/binutils.old/dist/include/ |
| safe-ctype.h | 78 _sch_isgraph = _sch_isalnum|_sch_ispunct, /* isprint and not space */ 96 #define ISPRINT(c) _sch_test(c, _sch_isprint) 135 #undef isprint macro 136 #define isprint(c) do_not_use_isprint_with_safe_ctype macro
|
| /src/external/gpl3/gcc/dist/include/ |
| safe-ctype.h | 78 _sch_isgraph = _sch_isalnum|_sch_ispunct, /* isprint and not space */ 96 #define ISPRINT(c) _sch_test(c, _sch_isprint) 135 #undef isprint macro 136 #define isprint(c) do_not_use_isprint_with_safe_ctype macro
|
| /src/external/gpl3/gcc.old/dist/include/ |
| safe-ctype.h | 78 _sch_isgraph = _sch_isalnum|_sch_ispunct, /* isprint and not space */ 96 #define ISPRINT(c) _sch_test(c, _sch_isprint) 135 #undef isprint macro 136 #define isprint(c) do_not_use_isprint_with_safe_ctype macro
|
| /src/external/gpl3/gdb/dist/readline/readline/ |
| chardefs.h | 87 #undef ISPRINT 95 #define ISPRINT(c) (IN_CTYPE_DOMAIN (c) && isprint ((unsigned char)c))
|
| /src/external/gpl3/gdb.old/dist/include/ |
| safe-ctype.h | 78 _sch_isgraph = _sch_isalnum|_sch_ispunct, /* isprint and not space */ 96 #define ISPRINT(c) _sch_test(c, _sch_isprint) 135 #undef isprint macro 136 #define isprint(c) do_not_use_isprint_with_safe_ctype macro
|
| /src/external/gpl3/gdb.old/dist/readline/readline/ |
| chardefs.h | 87 #undef ISPRINT 95 #define ISPRINT(c) (IN_CTYPE_DOMAIN (c) && isprint ((unsigned char)c))
|
| /src/external/gpl3/gdb/dist/include/ |
| safe-ctype.h | 78 _sch_isgraph = _sch_isalnum|_sch_ispunct, /* isprint and not space */ 96 #define ISPRINT(c) _sch_test(c, _sch_isprint) 135 #undef isprint macro 136 #define isprint(c) do_not_use_isprint_with_safe_ctype macro
|
| /src/external/gpl2/diffutils/dist/src/ |
| system.h | 263 #define ISPRINT(c) (CTYPE_DOMAIN (c) && isprint (c))
|
| /src/external/gpl2/grep/dist/lib/ |
| quotearg.c | 79 # define iswprint(wc) ISPRINT ((unsigned char) (wc)) 100 #undef ISPRINT 101 #define ISPRINT(c) (IN_CTYPE_DOMAIN (c) && isprint (c)) 412 printable = ISPRINT (c);
|
| /src/external/gpl2/gettext/dist/gettext-tools/libgrep/ |
| dfa.c | 50 #define isgraph(C) (isprint(C) && !isspace(C)) 62 #define ISPRINT(C) isprint(C) 74 #define ISPRINT(C) (isascii(C) && isprint(C)) 641 FUNC(is_print, ISPRINT)
|
| regex.c | 179 ctype uses should be through macros like ISPRINT... If 200 # define ISGRAPH(c) (IN_CTYPE_DOMAIN (c) && isprint (c) && !isspace (c)) 203 # undef ISPRINT 204 # define ISPRINT(c) (IN_CTYPE_DOMAIN (c) && isprint (c)) 3301 || (is_print && ISPRINT (ch)))
|
| /src/external/ibm-public/postfix/dist/src/util/ |
| sys_defs.h | 1790 #define ISPRINT(c) (ISASCII(c) && isprint((unsigned char)(c)))
|
| /src/external/gpl3/binutils/dist/libiberty/ |
| regex.c | 209 ctype uses should be through macros like ISPRINT... If 231 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c)) 234 # undef ISPRINT 235 # define ISPRINT(c) (ISASCII (c) && isprint (c)) 3306 || (is_print && ISPRINT (ch)))
|
| /src/external/gpl3/binutils.old/dist/libiberty/ |
| regex.c | 209 ctype uses should be through macros like ISPRINT... If 231 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c)) 234 # undef ISPRINT 235 # define ISPRINT(c) (ISASCII (c) && isprint (c)) 3306 || (is_print && ISPRINT (ch)))
|
| /src/external/gpl3/gcc/dist/libiberty/ |
| regex.c | 209 ctype uses should be through macros like ISPRINT... If 231 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c)) 234 # undef ISPRINT 235 # define ISPRINT(c) (ISASCII (c) && isprint (c)) 3306 || (is_print && ISPRINT (ch)))
|
| /src/external/gpl3/gcc.old/dist/libiberty/ |
| regex.c | 209 ctype uses should be through macros like ISPRINT... If 231 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c)) 234 # undef ISPRINT 235 # define ISPRINT(c) (ISASCII (c) && isprint (c)) 3306 || (is_print && ISPRINT (ch)))
|
| /src/external/gpl3/gdb.old/dist/libiberty/ |
| regex.c | 209 ctype uses should be through macros like ISPRINT... If 231 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c)) 234 # undef ISPRINT 235 # define ISPRINT(c) (ISASCII (c) && isprint (c)) 3306 || (is_print && ISPRINT (ch)))
|