Home
last modified time | relevance | path

Searched refs:m_enum_type (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DTypeFormat.h198 ConstString GetTypeName() { return m_enum_type; } in GetTypeName()
200 void SetTypeName(ConstString enum_type) { m_enum_type = enum_type; } in SetTypeName()
211 ConstString m_enum_type;
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DRegisterFlags.cpp23 m_enum_type(nullptr) { in Field()
29 m_enum_type(nullptr) {} in Field()
34 m_enum_type(enum_type) { in Field()
35 if (m_enum_type) { in Field()
42 for (const auto &enumerator : m_enum_type->GetEnumerators()) { in Field()
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeFormat.cpp137 : TypeFormatImpl(flags), m_enum_type(type_name), m_types() {} in TypeFormatImpl_EnumType()
164 TypeQuery query(m_enum_type.GetStringRef()); in FormatObject()
200 sstr.Printf("as type %s%s%s%s", m_enum_type.AsCString("<invalid type>"), in GetDescription()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DRegisterFlags.h97 const FieldEnum *GetEnum() const { return m_enum_type; } in GetEnum()
129 const FieldEnum *m_enum_type; variable