SBTypeEnumMember¶
-
class
lldb.SBTypeEnumMember(*args)¶ Represents a member of an enum in lldb.
Attributes Summary
A read only property that returns the name for this enum member as a string.
A read only property that returns the value of this enum member as a signed integer.
A read only property that returns an lldb object that represents the type (lldb.SBType) for this enum member.
A read only property that returns the value of this enum member as a unsigned integer.
Methods Summary
GetDescription(SBTypeEnumMember self, …)GetName(SBTypeEnumMember self)GetType(SBTypeEnumMember self)GetValueAsSigned(SBTypeEnumMember self)GetValueAsUnsigned(SBTypeEnumMember self)IsValid(SBTypeEnumMember self)Attributes Documentation
-
name¶ A read only property that returns the name for this enum member as a string.
-
signed¶ A read only property that returns the value of this enum member as a signed integer.
-
type¶ A read only property that returns an lldb object that represents the type (lldb.SBType) for this enum member.
-
unsigned¶ A read only property that returns the value of this enum member as a unsigned integer.
Methods Documentation
-
GetDescription(SBTypeEnumMember self, SBStream description, lldb::DescriptionLevel description_level) → bool¶
-
GetName(SBTypeEnumMember self) → char const *¶
-
GetType(SBTypeEnumMember self) → SBType¶
-
GetValueAsSigned(SBTypeEnumMember self) → int64_t¶
-
GetValueAsUnsigned(SBTypeEnumMember self) → uint64_t¶
-
IsValid(SBTypeEnumMember self) → bool¶
-