Home
last modified time | relevance | path

Searched refs:PRINTABLE (Results 1 – 3 of 3) sorted by relevance

/external/pcre/dist2/src/
Dpcre2_printint.c116 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()
Dpcre2_compile.c56 #define PRINTABLE(c) ((c) >= 64 && (c) < 255)
58 #define PRINTABLE(c) ((c) >= 32 && (c) < 127)
Dpcre2test.c228 #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))