Home
last modified time | relevance | path

Searched refs:m_variable_sp (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DValueObjectVariable.cpp63 assert(m_variable_sp.get() != nullptr); in ValueObjectVariable()
70 Type *var_type = m_variable_sp->GetType(); in GetCompilerTypeImpl()
77 Type *var_type = m_variable_sp->GetType(); in GetTypeName()
84 Type *var_type = m_variable_sp->GetType(); in GetDisplayTypeName()
91 Type *var_type = m_variable_sp->GetType(); in GetQualifiedTypeName()
121 if (m_variable_sp) in GetValueType()
122 return m_variable_sp->GetScope(); in GetValueType()
130 Variable *variable = m_variable_sp.get(); in UpdateValue()
327 if (m_variable_sp) { in GetModule()
337 if (m_variable_sp) in GetSymbolContextScope()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectVariable.h67 lldb::VariableSP GetVariable() override { return m_variable_sp; } in GetVariable()
77 lldb::VariableSP m_variable_sp; variable
/freebsd-14.2/contrib/llvm-project/lldb/source/Expression/
H A DMaterializer.cpp807 EntityVariable(lldb::VariableSP &variable_sp) : m_variable_sp(variable_sp) { in EntityVariable()
809 m_variable_sp->GetType()->GetForwardCompilerType().IsReferenceType(); in EntityVariable()
812 ConstString GetName() const override { return m_variable_sp->GetName(); } in GetName()
815 assert(m_variable_sp != nullptr); in SetupValueObject()
816 return ValueObjectVariable::Create(scope, m_variable_sp); in SetupValueObject()
821 return m_variable_sp->GetType()->GetByteSize(scope); in GetByteSize()
825 return m_variable_sp->LocationExpressionList().IsValid(); in LocationExpressionIsValid()
830 return m_variable_sp->GetType()->GetLayoutCompilerType().GetTypeBitAlign( in GetTypeBitAlign()
835 lldb::VariableSP m_variable_sp; ///< Variable that this entity is based on. member in EntityVariable