Lines Matching defs:SBStructuredData
1 //===-- SBStructuredData.cpp ----------------------------------------------===//
9 #include "lldb/API/SBStructuredData.h"
30 #pragma mark SBStructuredData
32 SBStructuredData::SBStructuredData() : m_impl_up(new StructuredDataImpl()) {
36 SBStructuredData::SBStructuredData(const lldb::SBStructuredData &rhs)
41 SBStructuredData::SBStructuredData(const lldb::SBScriptObject obj,
60 SBStructuredData::SBStructuredData(const lldb::EventSP &event_sp)
65 SBStructuredData::SBStructuredData(const lldb_private::StructuredDataImpl &impl)
70 SBStructuredData::~SBStructuredData() = default;
72 SBStructuredData &SBStructuredData::
73 operator=(const lldb::SBStructuredData &rhs) {
80 lldb::SBError SBStructuredData::SetFromJSON(lldb::SBStream &stream) {
99 lldb::SBError SBStructuredData::SetFromJSON(const char *json) {
106 bool SBStructuredData::IsValid() const {
111 SBStructuredData::operator bool() const {
117 void SBStructuredData::Clear() {
123 SBError SBStructuredData::GetAsJSON(lldb::SBStream &stream) const {
131 lldb::SBError SBStructuredData::GetDescription(lldb::SBStream &stream) const {
140 StructuredDataType SBStructuredData::GetType() const {
146 size_t SBStructuredData::GetSize() const {
152 bool SBStructuredData::GetKeys(lldb::SBStringList &keys) const {
178 lldb::SBStructuredData SBStructuredData::GetValueForKey(const char *key) const {
181 SBStructuredData result;
186 lldb::SBStructuredData SBStructuredData::GetItemAtIndex(size_t idx) const {
189 SBStructuredData result;
194 uint64_t SBStructuredData::GetIntegerValue(uint64_t fail_value) const {
200 uint64_t SBStructuredData::GetUnsignedIntegerValue(uint64_t fail_value) const {
206 int64_t SBStructuredData::GetSignedIntegerValue(int64_t fail_value) const {
212 double SBStructuredData::GetFloatValue(double fail_value) const {
218 bool SBStructuredData::GetBooleanValue(bool fail_value) const {
224 size_t SBStructuredData::GetStringValue(char *dst, size_t dst_len) const {
230 lldb::SBScriptObject SBStructuredData::GetGenericValue() const {