bool SBTypeFormat::IsEqualTo (lldb::SBTypeFormat &rhs) { if (IsValid() == false) return !rhs.IsValid(); if (GetFormat() == rhs.GetFormat()) return GetOptions() == rhs.GetOptions(); else return false; }
bool SBTypeFormat::IsEqualTo(lldb::SBTypeFormat &rhs) { LLDB_RECORD_METHOD(bool, SBTypeFormat, IsEqualTo, (lldb::SBTypeFormat &), rhs); if (!IsValid()) return !rhs.IsValid(); if (GetFormat() == rhs.GetFormat()) return GetOptions() == rhs.GetOptions(); else return false; }
bool SBTypeFormat::operator != (lldb::SBTypeFormat &rhs) { if (IsValid() == false) return !rhs.IsValid(); return m_opaque_sp != rhs.m_opaque_sp; }
bool SBTypeFormat::operator!=(lldb::SBTypeFormat &rhs) { LLDB_RECORD_METHOD(bool, SBTypeFormat, operator!=,(lldb::SBTypeFormat &), rhs); if (!IsValid()) return !rhs.IsValid(); return m_opaque_sp != rhs.m_opaque_sp; }