summaryrefslogtreecommitdiffstats
path: root/lldb/source/API/SBValueList.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/API/SBValueList.cpp')
-rw-r--r--lldb/source/API/SBValueList.cpp44
1 files changed, 22 insertions, 22 deletions
diff --git a/lldb/source/API/SBValueList.cpp b/lldb/source/API/SBValueList.cpp
index e7cbfad5308..4223fadb388 100644
--- a/lldb/source/API/SBValueList.cpp
+++ b/lldb/source/API/SBValueList.cpp
@@ -17,22 +17,22 @@ using namespace lldb;
using namespace lldb_private;
SBValueList::SBValueList () :
- m_lldb_object_ap ()
+ m_opaque_ap ()
{
}
SBValueList::SBValueList (const SBValueList &rhs) :
- m_lldb_object_ap ()
+ m_opaque_ap ()
{
if (rhs.IsValid())
- m_lldb_object_ap.reset (new lldb_private::ValueObjectList (*rhs));
+ m_opaque_ap.reset (new lldb_private::ValueObjectList (*rhs));
}
SBValueList::SBValueList (const lldb_private::ValueObjectList *lldb_object_ptr) :
- m_lldb_object_ap ()
+ m_opaque_ap ()
{
if (lldb_object_ptr)
- m_lldb_object_ap.reset (new lldb_private::ValueObjectList (*lldb_object_ptr));
+ m_opaque_ap.reset (new lldb_private::ValueObjectList (*lldb_object_ptr));
}
SBValueList::~SBValueList ()
@@ -42,7 +42,7 @@ SBValueList::~SBValueList ()
bool
SBValueList::IsValid () const
{
- return (m_lldb_object_ap.get() != NULL);
+ return (m_opaque_ap.get() != NULL);
}
const SBValueList &
@@ -51,9 +51,9 @@ SBValueList::operator = (const SBValueList &rhs)
if (this != &rhs)
{
if (rhs.IsValid())
- m_lldb_object_ap.reset (new lldb_private::ValueObjectList (*rhs));
+ m_opaque_ap.reset (new lldb_private::ValueObjectList (*rhs));
else
- m_lldb_object_ap.reset ();
+ m_opaque_ap.reset ();
}
return *this;
}
@@ -61,25 +61,25 @@ SBValueList::operator = (const SBValueList &rhs)
lldb_private::ValueObjectList *
SBValueList::operator->()
{
- return m_lldb_object_ap.get();
+ return m_opaque_ap.get();
}
lldb_private::ValueObjectList &
SBValueList::operator*()
{
- return *m_lldb_object_ap;
+ return *m_opaque_ap;
}
const lldb_private::ValueObjectList *
SBValueList::operator->() const
{
- return m_lldb_object_ap.get();
+ return m_opaque_ap.get();
}
const lldb_private::ValueObjectList &
SBValueList::operator*() const
{
- return *m_lldb_object_ap;
+ return *m_opaque_ap;
}
void
@@ -88,7 +88,7 @@ SBValueList::Append (const SBValue &val_obj)
if (val_obj.get())
{
CreateIfNeeded ();
- m_lldb_object_ap->Append (*val_obj);
+ m_opaque_ap->Append (*val_obj);
}
}
@@ -98,7 +98,7 @@ SBValueList::Append (lldb::ValueObjectSP& val_obj_sp)
if (val_obj_sp)
{
CreateIfNeeded ();
- m_lldb_object_ap->Append (val_obj_sp);
+ m_opaque_ap->Append (val_obj_sp);
}
}
@@ -107,8 +107,8 @@ SBValue
SBValueList::GetValueAtIndex (uint32_t idx) const
{
SBValue sb_value;
- if (m_lldb_object_ap.get())
- *sb_value = m_lldb_object_ap->GetValueObjectAtIndex (idx);
+ if (m_opaque_ap.get())
+ *sb_value = m_opaque_ap->GetValueObjectAtIndex (idx);
return sb_value;
}
@@ -116,16 +116,16 @@ uint32_t
SBValueList::GetSize () const
{
uint32_t size = 0;
- if (m_lldb_object_ap.get())
- size = m_lldb_object_ap->GetSize();
+ if (m_opaque_ap.get())
+ size = m_opaque_ap->GetSize();
return size;
}
void
SBValueList::CreateIfNeeded ()
{
- if (m_lldb_object_ap.get() == NULL)
- m_lldb_object_ap.reset (new ValueObjectList());
+ if (m_opaque_ap.get() == NULL)
+ m_opaque_ap.reset (new ValueObjectList());
}
@@ -133,8 +133,8 @@ SBValue
SBValueList::FindValueObjectByUID (lldb::user_id_t uid)
{
SBValue sb_value;
- if ( m_lldb_object_ap.get())
- *sb_value = m_lldb_object_ap->FindValueObjectByUID (uid);
+ if ( m_opaque_ap.get())
+ *sb_value = m_opaque_ap->FindValueObjectByUID (uid);
return sb_value;
}
OpenPOWER on IntegriCloud