Searched refs:PRINTABLE (Results 1 – 3 of 3) sorted by relevance
/external/pcre/dist2/src/ |
D | pcre2_printint.c | 116 if (PRINTABLE(c)) fprintf(f, "%c", (char)c); in print_char() 210 if (PRINTABLE(c)) fprintf(f, "%c", c); else fprintf(f, "\\x{%x}", c); in print_custring() 220 if (PRINTABLE(c)) fprintf(f, "%c", c); else fprintf(f, "\\x{%x}", c); in print_custring_bylen() 687 if (PRINTABLE(i)) fprintf(f, "%c", i); in pcre2_printint() 693 if (PRINTABLE(j)) fprintf(f, "%c", j); in pcre2_printint()
|
D | pcre2_compile.c | 56 #define PRINTABLE(c) ((c) >= 64 && (c) < 255) 58 #define PRINTABLE(c) ((c) >= 32 && (c) < 127)
|
D | pcre2test.c | 228 #define PRINTABLE(c) ((c) >= 64 && (c) < 255) macro 230 #define PRINTABLE(c) ((c) >= 32 && (c) < 127) macro 233 #define PRINTOK(c) ((use_tables != NULL && c < 256)? isprint(c) : PRINTABLE(c))
|