Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Descaping.cc312 bool last_hex_escape = false; // true if last output char was \xNN. in CEscapeInternal() local
329 (last_hex_escape && absl::ascii_isxdigit(c)))) { in CEscapeInternal()
346 last_hex_escape = is_hex_escape; in CEscapeInternal()
/third_party/protobuf/src/google/protobuf/stubs/
Dstrutil.cc484 bool last_hex_escape = false; // true if last output char was \xNN in CEscapeInternal() local
504 (last_hex_escape && isxdigit(*src)))) { in CEscapeInternal()
515 last_hex_escape = is_hex_escape; in CEscapeInternal()
/third_party/protobuf/ruby/ext/google/protobuf_c/
Dupb.c8606 bool last_hex_escape = false; /* true if last output char was \xNN */ in putescaped() local
8629 (!isprint(*buf) || (last_hex_escape && isxdigit(*buf)))) { in putescaped()
8637 last_hex_escape = is_hex_escape; in putescaped()