Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/ValueObject/
H A DValueObjectVariable.cpp61 : ValueObject(exe_scope, manager), m_variable_sp(var_sp) { in ValueObjectVariable()
63 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()
313 return m_variable_sp->IsInScope(frame); in IsInScope()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/ValueObject/
H A DValueObjectVariable.h67 lldb::VariableSP GetVariable() override { return m_variable_sp; } in GetVariable()
77 lldb::VariableSP m_variable_sp; variable
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DMaterializer.cpp815 EntityVariable(lldb::VariableSP &variable_sp) : m_variable_sp(variable_sp) { in EntityVariable()
817 m_variable_sp->GetType()->GetForwardCompilerType().IsReferenceType(); in EntityVariable()
820 ConstString GetName() const override { return m_variable_sp->GetName(); } in GetName()
823 assert(m_variable_sp != nullptr); in SetupValueObject()
824 return ValueObjectVariable::Create(scope, m_variable_sp); in SetupValueObject()
829 return m_variable_sp->GetType()->GetByteSize(scope); in GetByteSize()
833 return m_variable_sp->LocationExpressionList().IsValid(); in LocationExpressionIsValid()
838 return m_variable_sp->GetType()->GetLayoutCompilerType().GetTypeBitAlign( in GetTypeBitAlign()
843 lldb::VariableSP m_variable_sp; ///< Variable that this entity is based on. member in EntityVariable