Searched refs:m_variable_sp (Results 1 – 3 of 3) sorted by relevance
/external/llvm-project/lldb/source/Core/ |
D | ValueObjectVariable.cpp | 60 : ValueObject(exe_scope, manager), m_variable_sp(var_sp) { in ValueObjectVariable() 62 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() 309 return m_variable_sp->IsInScope(frame); in IsInScope() [all …]
|
/external/llvm-project/lldb/source/Expression/ |
D | Materializer.cpp | 415 : Entity(), m_variable_sp(variable_sp), m_is_reference(false), in EntityVariable() 423 m_variable_sp->GetType()->GetForwardCompilerType().IsReferenceType(); in EntityVariable() 435 (uint64_t)load_addr, m_variable_sp->GetName().AsCString()); in Materialize() 444 ValueObjectVariable::Create(scope, m_variable_sp); in Materialize() 449 m_variable_sp->GetName().AsCString()); in Materialize() 457 m_variable_sp->GetName().AsCString(), in Materialize() 470 m_variable_sp->GetName().AsCString(), extract_error.AsCString()); in Materialize() 483 m_variable_sp->GetName().AsCString(), in Materialize() 499 m_variable_sp->GetName().AsCString(), write_error.AsCString()); in Materialize() 508 m_variable_sp->GetName().AsCString(), in Materialize() [all …]
|
/external/llvm-project/lldb/include/lldb/Core/ |
D | ValueObjectVariable.h | 66 lldb::VariableSP GetVariable() override { return m_variable_sp; } in GetVariable() 76 m_variable_sp; ///< The variable that this value object is based upon variable
|