Searched refs:StringElementType (Results 1 – 4 of 4) sorted by relevance
| /NextBSD/contrib/llvm/tools/lldb/source/DataFormatters/ |
| HD | StringPrinter.cpp | 113 template <StringElementType type> 146 GetPrintableImpl<StringElementType::ASCII> (uint8_t* buffer, uint8_t* buffer_end, uint8_t*& next) in GetPrintableImpl() 216 GetPrintableImpl<StringElementType::UTF8> (uint8_t* buffer, uint8_t* buffer_end, uint8_t*& next) in GetPrintableImpl() 235 return GetPrintableImpl<StringElementType::ASCII>(buffer, buffer_end, next); in GetPrintableImpl() 313 GetPrintable(StringElementType type, uint8_t* buffer, uint8_t* buffer_end, uint8_t*& next) in GetPrintable() 320 case StringElementType::ASCII: in GetPrintable() 321 return GetPrintableImpl<StringElementType::ASCII>(buffer, buffer_end, next); in GetPrintable() 322 case StringElementType::UTF8: in GetPrintable() 323 return GetPrintableImpl<StringElementType::UTF8>(buffer, buffer_end, next); in GetPrintable() 403 …auto printable = GetPrintable(StringElementType::UTF8, utf8_data_ptr, utf8_data_end_ptr, next_data… in DumpUTFBufferToStream() [all …]
|
| HD | CXXFormatterFunctions.cpp | 262 if (!ReadStringAndDumpToStream<StringElementType::UTF16>(options)) in Char16StringSummaryProvider() 289 if (!ReadStringAndDumpToStream<StringElementType::UTF32>(options)) in Char32StringSummaryProvider() 332 return ReadStringAndDumpToStream<StringElementType::UTF8>(options); in WCharStringSummaryProvider() 334 return ReadStringAndDumpToStream<StringElementType::UTF16>(options); in WCharStringSummaryProvider() 336 return ReadStringAndDumpToStream<StringElementType::UTF32>(options); in WCharStringSummaryProvider() 366 return ReadBufferAndDumpToStream<StringElementType::UTF16>(options); in Char16SummaryProvider() 391 return ReadBufferAndDumpToStream<StringElementType::UTF32>(options); in Char32SummaryProvider() 411 return ReadBufferAndDumpToStream<StringElementType::UTF16>(options); in WCharSummaryProvider() 542 …lldb_private::formatters::ReadBufferAndDumpToStream<lldb_private::formatters::StringElementType::A… in LibcxxStringSummaryProvider() 899 return ReadStringAndDumpToStream<StringElementType::UTF16>(options); in NSStringSummaryProvider() [all …]
|
| /NextBSD/contrib/llvm/tools/lldb/include/lldb/DataFormatters/ |
| HD | StringPrinter.h | 21 enum class StringElementType { enum 279 template <StringElementType element_type> 283 template <StringElementType element_type>
|
| /NextBSD/contrib/llvm/tools/lldb/source/Core/ |
| HD | ValueObject.cpp | 1604 …te::formatters::ReadBufferAndDumpToStream<lldb_private::formatters::StringElementType::ASCII>(opti… in DumpPrintableRepresentation()
|