Home
last modified time | relevance | path

Searched refs:use_hex (Results 1 – 7 of 7) sorted by relevance

/third_party/grpc/third_party/upb/upb/pb/
Dtextprinter.c58 const bool use_hex = false; in putescaped() local
83 sprintf(dst, (use_hex ? "\\x%02x" : "\\%03o"), (uint8_t)*buf); in putescaped()
84 is_hex_escape = use_hex; in putescaped()
/third_party/mesa3d/src/freedreno/registers/
Dgen_header.py18 use_hex = False
21 use_hex = True
25 if use_hex:
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Descaping.cc309 std::string CEscapeInternal(absl::string_view src, bool use_hex, in CEscapeInternal() argument
330 if (use_hex) { in CEscapeInternal()
/third_party/abseil-cpp/absl/strings/
Descaping.cc309 std::string CEscapeInternal(absl::string_view src, bool use_hex, in CEscapeInternal() argument
330 if (use_hex) { in CEscapeInternal()
/third_party/protobuf/src/google/protobuf/stubs/
Dstrutil.cc481 int dest_len, bool use_hex, bool utf8_safe) { in CEscapeInternal() argument
507 sprintf(dest + used, (use_hex ? "\\x%02x" : "\\%03o"), in CEscapeInternal()
509 is_hex_escape = use_hex; in CEscapeInternal()
/third_party/flatbuffers/src/
Didl_parser.cpp529 auto use_hex = dot_lvl && (c == '0') && is_alpha_char(*cursor_, 'X'); in Next() local
530 if (use_hex) start_digits = ++cursor_; // '0x' is the prefix, skip it in Next()
533 if (use_hex) { in Next()
542 if (use_hex && !dot_lvl) start_digits = cursor_; in Next()
543 if ((use_hex && is_alpha_char(*cursor_, 'P')) || in Next()
/third_party/protobuf/ruby/ext/google/protobuf_c/
Dupb.c8605 const bool use_hex = false; in putescaped() local
8630 sprintf(dst, (use_hex ? "\\x%02x" : "\\%03o"), (uint8_t)*buf); in putescaped()
8631 is_hex_escape = use_hex; in putescaped()