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()
688 if (PRINTABLE(i)) fprintf(f, "%c", i); in pcre2_printint()
694 if (PRINTABLE(j)) fprintf(f, "%c", j); in pcre2_printint()
Dpcre2test.c209 #define PRINTABLE(c) ((c) >= 64 && (c) < 255) macro
211 #define PRINTABLE(c) ((c) >= 32 && (c) < 127) macro
214 #define PRINTOK(c) ((locale_tables != NULL)? isprint(c) : PRINTABLE(c))
Dpcre2_compile.c56 #define PRINTABLE(c) ((c) >= 64 && (c) < 255)
58 #define PRINTABLE(c) ((c) >= 32 && (c) < 127)