| 4687 | static void appendRaw(String &result, unsigned ch) { result += static_cast<char>(ch); } |
| 4688 | |
| 4689 | static void appendHex(String &result, unsigned ch) { result.append("\\u").append(toHex16Bit(ch)); } |
| 4690 | |
| 4691 | static String valueToQuotedStringN(const char *value, size_t length, bool emitUTF8 = false) |
| 4692 | { |
no test coverage detected