Searched refs:use_hex (Results 1 – 4 of 4) sorted by relevance
18 use_hex = False21 use_hex = True25 if use_hex:
309 std::string CEscapeInternal(absl::string_view src, bool use_hex, in CEscapeInternal() argument330 if (use_hex) { in CEscapeInternal()
481 int dest_len, bool use_hex, bool utf8_safe) { in CEscapeInternal() argument507 sprintf(dest + used, (use_hex ? "\\x%02x" : "\\%03o"), in CEscapeInternal()509 is_hex_escape = use_hex; in CEscapeInternal()
8605 const bool use_hex = false; in putescaped() local8630 sprintf(dst, (use_hex ? "\\x%02x" : "\\%03o"), (uint8_t)*buf); in putescaped()8631 is_hex_escape = use_hex; in putescaped()