Searched refs:StringSummaryFormat (Results 1 – 11 of 11) sorted by relevance
/external/llvm-project/lldb/source/API/ |
D | SBTypeSummary.cpp | 133 SBTypeSummary(TypeSummaryImplSP(new StringSummaryFormat(options, data)))); in CreateWithSummaryString() 254 } else if (StringSummaryFormat *string_summary_ptr = in GetData() 255 llvm::dyn_cast<StringSummaryFormat>(m_opaque_sp.get())) in GetData() 282 if (!llvm::isa<StringSummaryFormat>(m_opaque_sp.get())) in SetSummaryString() 284 if (StringSummaryFormat *string_summary_ptr = in SetSummaryString() 285 llvm::dyn_cast<StringSummaryFormat>(m_opaque_sp.get())) in SetSummaryString() 437 } else if (StringSummaryFormat *current_summary_ptr = in CopyOnWrite_Impl() 438 llvm::dyn_cast<StringSummaryFormat>(m_opaque_sp.get())) { in CopyOnWrite_Impl() 439 new_sp = TypeSummaryImplSP(new StringSummaryFormat( in CopyOnWrite_Impl() 459 new_sp = TypeSummaryImplSP(new StringSummaryFormat(GetOptions(), "")); in ChangeSummaryType() [all …]
|
/external/llvm-project/lldb/source/DataFormatters/ |
D | TypeSummary.cpp | 52 StringSummaryFormat::StringSummaryFormat(const TypeSummaryImpl::Flags &flags, in StringSummaryFormat() function in StringSummaryFormat 58 void StringSummaryFormat::SetSummaryString(const char *format_cstr) { in SetSummaryString() 69 bool StringSummaryFormat::FormatObject(ValueObject *valobj, std::string &retval, in FormatObject() 101 std::string StringSummaryFormat::GetDescription() { in GetDescription()
|
D | FormattersHelpers.cpp | 51 lldb::TypeSummaryImplSP summary_sp(new StringSummaryFormat(flags, string)); in AddStringSummary() 65 lldb::TypeSummaryImplSP summary_sp(new StringSummaryFormat(flags, "")); in AddOneLineSummary()
|
D | FormatManager.cpp | 722 new StringSummaryFormat(string_flags, "${var%s}")); in LoadSystemFormatters() 725 new StringSummaryFormat(string_array_flags, "${var%s}")); in LoadSystemFormatters() 740 new StringSummaryFormat(TypeSummaryImpl::Flags() in LoadSystemFormatters()
|
/external/llvm-project/lldb/include/lldb/DataFormatters/ |
D | TypeSummary.h | 278 struct StringSummaryFormat : public TypeSummaryImpl { struct 283 StringSummaryFormat(const TypeSummaryImpl::Flags &flags, const char *f); argument 285 ~StringSummaryFormat() override = default; 301 StringSummaryFormat(const StringSummaryFormat &) = delete; argument 302 const StringSummaryFormat &operator=(const StringSummaryFormat &) = delete; argument
|
D | ValueObjectPrinter.h | 142 friend struct StringSummaryFormat;
|
/external/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
D | CPlusPlusLanguage.cpp | 762 new StringSummaryFormat(stl_summary_flags, "${var._M_dataplus._M_p}")); in LoadLibStdcppFormatters() 798 new StringSummaryFormat(stl_summary_flags, "${var._M_dataplus._M_p%S}")); in LoadLibStdcppFormatters() 844 new StringSummaryFormat(stl_summary_flags, "size=${svar%#}"))); in LoadLibStdcppFormatters() 848 new StringSummaryFormat(stl_summary_flags, "size=${svar%#}"))); in LoadLibStdcppFormatters() 852 new StringSummaryFormat(stl_summary_flags, "size=${svar%#}"))); in LoadLibStdcppFormatters()
|
/external/llvm-project/lldb/include/lldb/ |
D | lldb-forward.h | 278 struct StringSummaryFormat; 413 typedef std::shared_ptr<lldb_private::StringSummaryFormat>
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectFrame.cpp | 506 summary_format_sp = std::make_shared<StringSummaryFormat>( in DoExecute()
|
D | CommandObjectType.cpp | 1445 std::unique_ptr<StringSummaryFormat> string_format( in Execute_StringSummary() 1446 new StringSummaryFormat(m_options.m_flags, format_cstr)); in Execute_StringSummary()
|
/external/llvm-project/lldb/source/Core/ |
D | FormatEntity.cpp | 1704 static StringSummaryFormat format( in Format()
|