Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Core/
H A DValueObjectVariable.cpp62 assert(m_variable_sp.get() != nullptr); in ValueObjectVariable()
69 Type *var_type = m_variable_sp->GetType(); in GetCompilerTypeImpl()
76 Type *var_type = m_variable_sp->GetType(); in GetTypeName()
83 Type *var_type = m_variable_sp->GetType(); in GetDisplayTypeName()
90 Type *var_type = m_variable_sp->GetType(); in GetQualifiedTypeName()
120 if (m_variable_sp) in GetValueType()
121 return m_variable_sp->GetScope(); in GetValueType()
129 Variable *variable = m_variable_sp.get(); in UpdateValue()
326 if (m_variable_sp) { in GetModule()
336 if (m_variable_sp) in GetSymbolContextScope()
[all …]
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DValueObjectVariable.h66 lldb::VariableSP GetVariable() override { return m_variable_sp; } in GetVariable()
76 lldb::VariableSP m_variable_sp; variable
/llvm-project-15.0.7/lldb/source/Expression/
H A DMaterializer.cpp806 EntityVariable(lldb::VariableSP &variable_sp) : m_variable_sp(variable_sp) { in EntityVariable()
808 m_variable_sp->GetType()->GetForwardCompilerType().IsReferenceType(); in EntityVariable()
811 ConstString GetName() const override { return m_variable_sp->GetName(); } in GetName()
814 assert(m_variable_sp != nullptr); in SetupValueObject()
815 return ValueObjectVariable::Create(scope, m_variable_sp); in SetupValueObject()
820 return m_variable_sp->GetType()->GetByteSize(scope); in GetByteSize()
824 return m_variable_sp->LocationExpressionList().IsValid(); in LocationExpressionIsValid()
829 return m_variable_sp->GetType()->GetLayoutCompilerType().GetTypeBitAlign( in GetTypeBitAlign()
834 lldb::VariableSP m_variable_sp; ///< Variable that this entity is based on. member in EntityVariable