LLDB mainline
|
#include <TypeSummary.h>
Public Types | |
typedef std::shared_ptr< ScriptSummaryFormat > | SharedPointer |
Public Types inherited from lldb_private::TypeSummaryImpl | |
enum class | Kind { eSummaryString , eScript , eCallback , eInternal } |
typedef std::shared_ptr< TypeSummaryImpl > | SharedPointer |
Public Member Functions | |
ScriptSummaryFormat (const TypeSummaryImpl::Flags &flags, const char *function_name, const char *python_script=nullptr) | |
~ScriptSummaryFormat () override=default | |
const char * | GetFunctionName () const |
const char * | GetPythonScript () const |
void | SetFunctionName (const char *function_name) |
void | SetPythonScript (const char *script) |
bool | FormatObject (ValueObject *valobj, std::string &dest, const TypeSummaryOptions &options) override |
std::string | GetDescription () override |
Public Member Functions inherited from lldb_private::TypeSummaryImpl | |
virtual | ~TypeSummaryImpl ()=default |
Kind | GetKind () const |
bool | Cascades () const |
bool | SkipsPointers () const |
bool | SkipsReferences () const |
bool | NonCacheable () const |
virtual bool | DoesPrintChildren (ValueObject *valobj) const |
virtual bool | DoesPrintEmptyAggregates () const |
virtual bool | DoesPrintValue (ValueObject *valobj) const |
bool | IsOneLiner () const |
virtual bool | HideNames (ValueObject *valobj) const |
void | SetCascades (bool value) |
void | SetSkipsPointers (bool value) |
void | SetSkipsReferences (bool value) |
virtual void | SetDoesPrintChildren (bool value) |
virtual void | SetDoesPrintValue (bool value) |
void | SetIsOneLiner (bool value) |
virtual void | SetHideNames (bool value) |
virtual void | SetNonCacheable (bool value) |
uint32_t | GetOptions () |
void | SetOptions (uint32_t value) |
virtual bool | FormatObject (ValueObject *valobj, std::string &dest, const TypeSummaryOptions &options)=0 |
virtual std::string | GetDescription ()=0 |
uint32_t & | GetRevision () |
Static Public Member Functions | |
static bool | classof (const TypeSummaryImpl *S) |
Public Attributes | |
std::string | m_function_name |
std::string | m_python_script |
StructuredData::ObjectSP | m_script_function_sp |
Private Member Functions | |
ScriptSummaryFormat (const ScriptSummaryFormat &)=delete | |
const ScriptSummaryFormat & | operator= (const ScriptSummaryFormat &)=delete |
Additional Inherited Members | |
Protected Member Functions inherited from lldb_private::TypeSummaryImpl | |
TypeSummaryImpl (Kind kind, const TypeSummaryImpl::Flags &flags) | |
Protected Attributes inherited from lldb_private::TypeSummaryImpl | |
uint32_t | m_my_revision = 0 |
Flags | m_flags |
Definition at line 352 of file TypeSummary.h.
typedef std::shared_ptr<ScriptSummaryFormat> lldb_private::ScriptSummaryFormat::SharedPointer |
Definition at line 391 of file TypeSummary.h.
ScriptSummaryFormat::ScriptSummaryFormat | ( | const TypeSummaryImpl::Flags & | flags, |
const char * | function_name, | ||
const char * | python_script = nullptr |
||
) |
Definition at line 148 of file TypeSummary.cpp.
References m_function_name, and m_python_script.
|
overridedefault |
|
privatedelete |
|
inlinestatic |
Definition at line 387 of file TypeSummary.h.
References lldb_private::TypeSummaryImpl::eScript, and lldb_private::TypeSummaryImpl::GetKind().
|
overridevirtual |
Implements lldb_private::TypeSummaryImpl.
Definition at line 159 of file TypeSummary.cpp.
References lldb_private::ScriptInterpreter::GetScriptedSummary(), lldb_private::ValueObject::GetSP(), lldb_private::ValueObject::GetTargetSP(), m_function_name, and m_script_function_sp.
|
overridevirtual |
Implements lldb_private::TypeSummaryImpl.
Definition at line 184 of file TypeSummary.cpp.
References lldb_private::TypeSummaryImpl::Cascades(), lldb_private::TypeSummaryImpl::DoesPrintChildren(), lldb_private::TypeSummaryImpl::DoesPrintValue(), lldb_private::StreamString::GetString(), lldb_private::TypeSummaryImpl::HideNames(), lldb_private::TypeSummaryImpl::IsOneLiner(), m_function_name, m_python_script, lldb_private::Stream::Printf(), lldb_private::Stream::PutCString(), lldb_private::TypeSummaryImpl::SkipsPointers(), and lldb_private::TypeSummaryImpl::SkipsReferences().
|
inline |
Definition at line 363 of file TypeSummary.h.
References m_function_name.
|
inline |
Definition at line 365 of file TypeSummary.h.
References m_python_script.
|
privatedelete |
|
inline |
Definition at line 367 of file TypeSummary.h.
References m_function_name, and m_python_script.
|
inline |
Definition at line 375 of file TypeSummary.h.
References m_python_script.
std::string lldb_private::ScriptSummaryFormat::m_function_name |
Definition at line 353 of file TypeSummary.h.
Referenced by FormatObject(), GetDescription(), GetFunctionName(), ScriptSummaryFormat(), and SetFunctionName().
std::string lldb_private::ScriptSummaryFormat::m_python_script |
Definition at line 354 of file TypeSummary.h.
Referenced by GetDescription(), GetPythonScript(), ScriptSummaryFormat(), SetFunctionName(), and SetPythonScript().
StructuredData::ObjectSP lldb_private::ScriptSummaryFormat::m_script_function_sp |
Definition at line 355 of file TypeSummary.h.
Referenced by FormatObject().