HomeSort by relevance Sort by last modified time
    Searched refs:PRINTABLE (Results 1 - 5 of 5) sorted by null

  /external/pcre/dist2/src/
pcre2_printint.c 116 if (PRINTABLE(c)) fprintf(f, "%c", (char)c);
210 if (PRINTABLE(c)) fprintf(f, "%c", c); else fprintf(f, "\\x{%x}", c);
220 if (PRINTABLE(c)) fprintf(f, "%c", c); else fprintf(f, "\\x{%x}", c);
688 if (PRINTABLE(i)) fprintf(f, "%c", i);
694 if (PRINTABLE(j)) fprintf(f, "%c", j);
pcre2test.c 203 /* The macro PRINTABLE determines whether to print an output character as-is or
209 #define PRINTABLE(c) ((c) >= 64 && (c) < 255)
211 #define PRINTABLE(c) ((c) >= 32 && (c) < 127)
214 #define PRINTOK(c) ((locale_tables != NULL)? isprint(c) : PRINTABLE(c))
    [all...]
pcre2_compile.c 56 #define PRINTABLE(c) ((c) >= 64 && (c) < 255)
58 #define PRINTABLE(c) ((c) >= 32 && (c) < 127)
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/asn1/
asn1.go 540 // PRINTABLE STRINGs so that a sequence of them can be
  /prebuilts/go/linux-x86/src/encoding/asn1/
asn1.go 540 // PRINTABLE STRINGs so that a sequence of them can be

Completed in 113 milliseconds