Home
last modified time | relevance | path

Searched refs:GetValueAsCString (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DValueObjectPrinter.cpp157 str = valobj.GetValueAsCString(); in GetDescriptionForDisplay()
370 valobj.GetValueAsCString(lldb::eFormatDefault, value); in GetValueSummaryError()
372 valobj.GetValueAsCString(format, value); in GetValueSummaryError()
374 const char *val_cstr = valobj.GetValueAsCString(); in GetValueSummaryError()
H A DFormatterBytecode.cpp72 os << "object(" << valobj->get()->GetValueAsCString() << ')'; in toString()
123 format(build_format_adapter(valobj->get()->GetValueAsCString())); in FormatImpl()
517 data.Push(std::string(valobj->GetValueAsCString())); in Interpret()
H A DVectorType.cpp317 const char *child_value = child_sp->GetValueAsCString(); in VectorTypeSummaryProvider()
H A DTypeSummary.cpp289 os << valobj->get()->GetValueAsCString(); in FormatObject()
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpoint.cpp290 if (auto *old_value_cstr = m_old_value_sp->GetValueAsCString()) { in DumpSnapshots()
315 if (auto *new_value_cstr = m_new_value_sp->GetValueAsCString()) in DumpSnapshots()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DBlockPointer.cpp197 qualified_child_representation_sp->GetValueAsCString(); in BlockPointerSummaryProvider()
H A DCxxStringTypes.cpp82 valobj.GetValueAsCString(ElemTraits.second, value); in CharSummaryProvider()
/freebsd/contrib/llvm-project/lldb/include/lldb/ValueObject/
H A DValueObject.h432 virtual const char *GetValueAsCString();
434 virtual bool GetValueAsCString(const lldb_private::TypeFormatImpl &format,
437 bool GetValueAsCString(lldb::Format format, std::string &destination);
/freebsd/contrib/llvm-project/lldb/source/ValueObject/
H A DValueObject.cpp1056 bool ValueObject::GetValueAsCString(const lldb_private::TypeFormatImpl &format, in GetValueAsCString() function in ValueObject
1064 bool ValueObject::GetValueAsCString(lldb::Format format, in GetValueAsCString() function in ValueObject
1066 return GetValueAsCString(TypeFormatImpl_Format(format), destination); in GetValueAsCString()
1069 const char *ValueObject::GetValueAsCString() { in GetValueAsCString() function in ValueObject
1094 if (GetValueAsCString(*format_sp.get(), m_value_str)) { in GetValueAsCString()
1501 str = GetValueAsCString(); in DumpPrintableRepresentation()
1559 str = GetValueAsCString(); in DumpPrintableRepresentation()
2121 GetValueAsCString()); in GetExpressionPath()
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DUserExpression.cpp399 result_valobj_sp->GetValueAsCString()); in Evaluate()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBValue.cpp359 return ConstString(value_sp->GetValueAsCString()).GetCString(); in GetValue()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp5778 const char *value = valobj->GetValueAsCString(); in DisplayRowObject()