Searched refs:PRINTABLE (Results 1 – 3 of 3) sorted by relevance
/external/pcre/dist/ |
D | pcre_printint.c | 96 #define PRINTABLE(c) ((c) >= 64 && (c) < 255) macro 98 #define PRINTABLE(c) ((c) >= 32 && (c) < 127) macro 125 if (PRINTABLE(c)) fprintf(f, "%c", (char)c); in print_char() 136 if (PRINTABLE(c)) fprintf(f, "%c", (char)c); in print_char() 172 if (PRINTABLE(c)) fprintf(f, "%c", (char)c); in print_char() 198 if (PRINTABLE(c)) fprintf(f, "%c", (char)c); in print_char() 227 if (PRINTABLE(c)) fprintf(f, "%c", c); else fprintf(f, "\\x{%x}", c); in print_puchar() 690 if (PRINTABLE(i)) fprintf(f, "%c", i); in pcre_printint() 696 if (PRINTABLE(j)) fprintf(f, "%c", j); in pcre_printint()
|
D | pcretest.c | 175 #define PRINTABLE(c) ((c) >= 64 && (c) < 255) macro 177 #define PRINTABLE(c) ((c) >= 32 && (c) < 127) macro 180 #define PRINTOK(c) (locale_set? isprint(c) : PRINTABLE(c))
|
D | pcre_compile.c | 9675 if (PRINTABLE(ch)) printf("First char = %c%s\n", ch, caseless); in pcre_compile2() 9684 if (PRINTABLE(ch)) printf("Req char = %c%s\n", ch, caseless); in pcre_compile2()
|