LLDB mainline
|
#include <StructuredData.h>
Public Member Functions | |
Float (double d=0.0) | |
~Float () override=default | |
void | SetValue (double value) |
double | 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 | |
double | m_value |
Definition at line 328 of file StructuredData.h.
|
inline |
Definition at line 330 of file StructuredData.h.
|
overridedefault |
|
overridevirtual |
Reimplemented from lldb_private::StructuredData::Object.
Definition at line 191 of file StructuredData.cpp.
References lldb_private::Stream::Printf().
|
inline |
Definition at line 337 of file StructuredData.h.
References m_value.
Referenced by lldb_private::StructuredData::Object::GetFloatValue().
|
overridevirtual |
Implements lldb_private::StructuredData::Object.
Definition at line 151 of file StructuredData.cpp.
|
inline |
Definition at line 335 of file StructuredData.h.
References m_value.
|
protected |
Definition at line 344 of file StructuredData.h.
Referenced by GetValue(), and SetValue().