Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/lldb/source/Core/
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()
125 if (m_variable_sp)
126 return m_variable_sp->GetScope(); in UpdateValue()
134 Variable *variable = m_variable_sp.get(); in UpdateValue()
322 return m_variable_sp in IsInScope()
[all...]
/freebsd-src/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-src/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