LLDB mainline
|
#include <StructuredData.h>
Public Member Functions | |
Boolean (bool b=false) | |
~Boolean () override=default | |
void | SetValue (bool value) |
bool | GetValue () |
void | Serialize (llvm::json::OStream &s) const override |
void | GetDescription (lldb_private::Stream &s) const override |
Public Member Functions inherited from lldb_private::StructuredData::Object | |
Object (lldb::StructuredDataType t=lldb::eStructuredDataTypeInvalid) | |
virtual | ~Object ()=default |
virtual bool | IsValid () const |
virtual void | Clear () |
lldb::StructuredDataType | GetType () const |
void | SetType (lldb::StructuredDataType t) |
Array * | GetAsArray () |
Dictionary * | GetAsDictionary () |
UnsignedInteger * | GetAsUnsignedInteger () |
SignedInteger * | GetAsSignedInteger () |
uint64_t | GetUnsignedIntegerValue (uint64_t fail_value=0) |
int64_t | GetSignedIntegerValue (int64_t fail_value=0) |
Float * | GetAsFloat () |
double | GetFloatValue (double fail_value=0.0) |
Boolean * | GetAsBoolean () |
bool | GetBooleanValue (bool fail_value=false) |
String * | GetAsString () |
llvm::StringRef | GetStringValue (const char *fail_value=nullptr) |
Generic * | GetAsGeneric () |
ObjectSP | GetObjectForDotSeparatedPath (llvm::StringRef path) |
void | DumpToStdout (bool pretty_print=true) const |
virtual void | Serialize (llvm::json::OStream &s) const =0 |
void | Dump (lldb_private::Stream &s, bool pretty_print=true) const |
virtual void | GetDescription (lldb_private::Stream &s) const |
Protected Attributes | |
bool | m_value |
Definition at line 347 of file StructuredData.h.
|
inline |
Definition at line 349 of file StructuredData.h.
|
overridedefault |
|
overridevirtual |
Reimplemented from lldb_private::StructuredData::Object.
Definition at line 195 of file StructuredData.cpp.
References lldb_private::Stream::Printf().
|
inline |
Definition at line 356 of file StructuredData.h.
References m_value.
Referenced by lldb_private::StructuredData::Object::GetBooleanValue(), lldb_private::StructuredData::Dictionary::GetValueForKeyAsBoolean(), and CommandObjectScriptingObjectParsed::CommandOptions::SetOptionsFromArray().
|
overridevirtual |
Implements lldb_private::StructuredData::Object.
Definition at line 155 of file StructuredData.cpp.
|
inline |
Definition at line 354 of file StructuredData.h.
References m_value.
|
protected |
Definition at line 363 of file StructuredData.h.
Referenced by GetValue(), and SetValue().