Home
last modified time | relevance | path

Searched refs:GetSummaryAsCString (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxAtomic.cpp75 if (atomic_value->GetSummaryAsCString(summary, options) && in LibCxxAtomicSummaryProvider()
H A DLibStdcpp.cpp247 stream << ptr->GetSummaryAsCString(); in LibStdcppStringSummaryProvider()
/freebsd/contrib/llvm-project/lldb/include/lldb/ValueObject/
H A DValueObject.h527 GetSummaryAsCString(lldb::LanguageType lang = lldb::eLanguageTypeUnknown);
530 GetSummaryAsCString(TypeSummaryImpl *summary_ptr, std::string &destination,
533 bool GetSummaryAsCString(std::string &destination,
536 bool GetSummaryAsCString(TypeSummaryImpl *summary_ptr,
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DValueObjectPrinter.cpp155 str = valobj.GetSummaryAsCString(); in GetDescriptionForDisplay()
402 valobj.GetSummaryAsCString(entry, summary, in GetValueSummaryError()
406 valobj.GetSummaryAsCString(m_options.m_varformat_language); in GetValueSummaryError()
H A DFormatterBytecode.cpp461 const char *summary = valobj->GetSummaryAsCString(); in Interpret()
462 data.Push(summary ? std::string(valobj->GetSummaryAsCString()) in Interpret()
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpoint.cpp293 if (auto *old_summary_cstr = m_old_value_sp->GetSummaryAsCString()) in DumpSnapshots()
318 if (auto *new_summary_cstr = m_new_value_sp->GetSummaryAsCString()) in DumpSnapshots()
/freebsd/contrib/llvm-project/lldb/source/ValueObject/
H A DValueObject.cpp569 bool ValueObject::GetSummaryAsCString(TypeSummaryImpl *summary_ptr, in GetSummaryAsCString() function in ValueObject
572 return GetSummaryAsCString(summary_ptr, destination, in GetSummaryAsCString()
576 bool ValueObject::GetSummaryAsCString(TypeSummaryImpl *summary_ptr, in GetSummaryAsCString() function in ValueObject
631 const char *ValueObject::GetSummaryAsCString(lldb::LanguageType lang) { in GetSummaryAsCString() function in ValueObject
635 GetSummaryAsCString(GetSummaryFormat().get(), m_summary_str, in GetSummaryAsCString()
643 bool ValueObject::GetSummaryAsCString(std::string &destination, in GetSummaryAsCString() function in ValueObject
645 return GetSummaryAsCString(GetSummaryFormat().get(), destination, options); in GetSummaryAsCString()
1505 str = GetSummaryAsCString(); in DumpPrintableRepresentation()
1552 str = GetSummaryAsCString(); in DumpPrintableRepresentation()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBValue.cpp427 return ConstString(value_sp->GetSummaryAsCString()).GetCString(); in GetSummary()
438 if (value_sp->GetSummaryAsCString(buffer, options.ref()) && !buffer.empty()) in GetSummary()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DCocoa.cpp1221 stream.Printf("%s", valobj_sp->GetSummaryAsCString()); in ObjCSELSummaryProvider()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp5779 const char *summary = valobj->GetSummaryAsCString(); in DisplayRowObject()