Searched refs:use_hex (Results 1 – 7 of 7) sorted by relevance
/third_party/grpc/third_party/upb/upb/pb/ |
D | textprinter.c | 58 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/ |
D | gen_header.py | 18 use_hex = False 21 use_hex = True 25 if use_hex:
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
D | escaping.cc | 309 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/ |
D | escaping.cc | 309 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/ |
D | strutil.cc | 481 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/ |
D | idl_parser.cpp | 529 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/ |
D | upb.c | 8605 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()
|