Lines Matching refs:SBStructuredData

30 #pragma mark SBStructuredData
32 SBStructuredData::SBStructuredData() : m_impl_up(new StructuredDataImpl()) { in SBStructuredData() function in SBStructuredData
36 SBStructuredData::SBStructuredData(const lldb::SBStructuredData &rhs) in SBStructuredData() function in SBStructuredData
41 SBStructuredData::SBStructuredData(const lldb::SBScriptObject obj, in SBStructuredData() function in SBStructuredData
60 SBStructuredData::SBStructuredData(const lldb::EventSP &event_sp) in SBStructuredData() function in SBStructuredData
65 SBStructuredData::SBStructuredData(const lldb_private::StructuredDataImpl &impl) in SBStructuredData() function in SBStructuredData
70 SBStructuredData::~SBStructuredData() = default;
72 SBStructuredData &SBStructuredData::
73 operator=(const lldb::SBStructuredData &rhs) { in operator =()
80 lldb::SBError SBStructuredData::SetFromJSON(lldb::SBStream &stream) { in SetFromJSON()
94 lldb::SBError SBStructuredData::SetFromJSON(const char *json) { in SetFromJSON()
101 bool SBStructuredData::IsValid() const { in IsValid()
106 SBStructuredData::operator bool() const { in operator bool()
112 void SBStructuredData::Clear() { in Clear()
118 SBError SBStructuredData::GetAsJSON(lldb::SBStream &stream) const { in GetAsJSON()
126 lldb::SBError SBStructuredData::GetDescription(lldb::SBStream &stream) const { in GetDescription()
135 StructuredDataType SBStructuredData::GetType() const { in GetType()
141 size_t SBStructuredData::GetSize() const { in GetSize()
147 bool SBStructuredData::GetKeys(lldb::SBStringList &keys) const { in GetKeys()
173 lldb::SBStructuredData SBStructuredData::GetValueForKey(const char *key) const { in GetValueForKey()
176 SBStructuredData result; in GetValueForKey()
181 lldb::SBStructuredData SBStructuredData::GetItemAtIndex(size_t idx) const { in GetItemAtIndex()
184 SBStructuredData result; in GetItemAtIndex()
189 uint64_t SBStructuredData::GetIntegerValue(uint64_t fail_value) const { in GetIntegerValue()
195 uint64_t SBStructuredData::GetUnsignedIntegerValue(uint64_t fail_value) const { in GetUnsignedIntegerValue()
201 int64_t SBStructuredData::GetSignedIntegerValue(int64_t fail_value) const { in GetSignedIntegerValue()
207 double SBStructuredData::GetFloatValue(double fail_value) const { in GetFloatValue()
213 bool SBStructuredData::GetBooleanValue(bool fail_value) const { in GetBooleanValue()
219 size_t SBStructuredData::GetStringValue(char *dst, size_t dst_len) const { in GetStringValue()
225 lldb::SBScriptObject SBStructuredData::GetGenericValue() const { in GetGenericValue()