Lines Matching refs:DecodedCharBuffer
34 class DecodedCharBuffer { class
36 DecodedCharBuffer(std::nullptr_t) {} in DecodedCharBuffer() function in DecodedCharBuffer
38 DecodedCharBuffer(const uint8_t *bytes, size_t size) : m_size(size) { in DecodedCharBuffer() function in DecodedCharBuffer
44 DecodedCharBuffer(const char *bytes, size_t size) in DecodedCharBuffer() function in DecodedCharBuffer
45 : DecodedCharBuffer(reinterpret_cast<const uint8_t *>(bytes), size) {} in DecodedCharBuffer()
59 std::function<DecodedCharBuffer(uint8_t *, uint8_t *, uint8_t *&)>;
64 static DecodedCharBuffer
96 DecodedCharBuffer attemptASCIIEscape(llvm::UTF32 c, in attemptASCIIEscape()
136 DecodedCharBuffer GetPrintableImpl<StringElementType::ASCII>( in GetPrintableImpl()
142 DecodedCharBuffer retval = attemptASCIIEscape(*buffer, escape_style); in GetPrintableImpl()
169 DecodedCharBuffer GetPrintableImpl<StringElementType::UTF8>( in GetPrintableImpl()
192 DecodedCharBuffer retval = attemptASCIIEscape(codepoint, escape_style); in GetPrintableImpl()
218 static DecodedCharBuffer GetPrintable(StringElementType type, uint8_t *buffer, in GetPrintable()
243 uint8_t *&next) -> DecodedCharBuffer { in GetDefaultEscapingHelper()