Home
last modified time | relevance | path

Searched refs:TypeEnumMemberImpl (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBTypeEnumMember.h46 void reset(lldb_private::TypeEnumMemberImpl *);
48 lldb_private::TypeEnumMemberImpl &ref();
50 const lldb_private::TypeEnumMemberImpl &ref() const;
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBTypeEnumMember.cpp90 void SBTypeEnumMember::reset(TypeEnumMemberImpl *type_member_impl) { in reset()
94 TypeEnumMemberImpl &SBTypeEnumMember::ref() { in ref()
96 m_opaque_sp = std::make_shared<TypeEnumMemberImpl>(); in ref()
100 const TypeEnumMemberImpl &SBTypeEnumMember::ref() const { in ref()
H A DSBType.cpp453 lldb::TypeEnumMemberImplSP(new TypeEnumMemberImpl( in GetEnumMembers()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DType.h792 class TypeEnumMemberImpl {
794 TypeEnumMemberImpl() : m_name("<invalid>") {} in TypeEnumMemberImpl() function
796 TypeEnumMemberImpl(const lldb::TypeImplSP &integer_type_sp, ConstString name,
799 TypeEnumMemberImpl(const TypeEnumMemberImpl &rhs) = default;
801 TypeEnumMemberImpl &operator=(const TypeEnumMemberImpl &rhs);
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h254 class TypeEnumMemberImpl; variable
454 typedef std::shared_ptr<lldb_private::TypeEnumMemberImpl> TypeEnumMemberImplSP;
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DType.cpp1256 TypeEnumMemberImpl::TypeEnumMemberImpl(const lldb::TypeImplSP &integer_type_sp, in TypeEnumMemberImpl() function in TypeEnumMemberImpl