Lines Matching refs:SBStructuredData

25 #pragma mark SBStructuredData
27 SBStructuredData::SBStructuredData() : m_impl_up(new StructuredDataImpl()) { in SBStructuredData() function in SBStructuredData
31 SBStructuredData::SBStructuredData(const lldb::SBStructuredData &rhs) in SBStructuredData() function in SBStructuredData
36 SBStructuredData::SBStructuredData(const lldb::EventSP &event_sp) in SBStructuredData() function in SBStructuredData
41 SBStructuredData::SBStructuredData(const lldb_private::StructuredDataImpl &impl) in SBStructuredData() function in SBStructuredData
46 SBStructuredData::~SBStructuredData() = default;
48 SBStructuredData &SBStructuredData::
49 operator=(const lldb::SBStructuredData &rhs) { in operator =()
56 lldb::SBError SBStructuredData::SetFromJSON(lldb::SBStream &stream) { in SetFromJSON()
70 lldb::SBError SBStructuredData::SetFromJSON(const char *json) { in SetFromJSON()
77 bool SBStructuredData::IsValid() const { in IsValid()
82 SBStructuredData::operator bool() const { in operator bool()
88 void SBStructuredData::Clear() { in Clear()
94 SBError SBStructuredData::GetAsJSON(lldb::SBStream &stream) const { in GetAsJSON()
102 lldb::SBError SBStructuredData::GetDescription(lldb::SBStream &stream) const { in GetDescription()
111 StructuredDataType SBStructuredData::GetType() const { in GetType()
117 size_t SBStructuredData::GetSize() const { in GetSize()
123 bool SBStructuredData::GetKeys(lldb::SBStringList &keys) const { in GetKeys()
149 lldb::SBStructuredData SBStructuredData::GetValueForKey(const char *key) const { in GetValueForKey()
152 SBStructuredData result; in GetValueForKey()
157 lldb::SBStructuredData SBStructuredData::GetItemAtIndex(size_t idx) const { in GetItemAtIndex()
160 SBStructuredData result; in GetItemAtIndex()
165 uint64_t SBStructuredData::GetIntegerValue(uint64_t fail_value) const { in GetIntegerValue()
171 double SBStructuredData::GetFloatValue(double fail_value) const { in GetFloatValue()
177 bool SBStructuredData::GetBooleanValue(bool fail_value) const { in GetBooleanValue()
183 size_t SBStructuredData::GetStringValue(char *dst, size_t dst_len) const { in GetStringValue()