Home
last modified time | relevance | path

Searched refs:TypeMemberImpl (Results 1 – 5 of 5) sorted by relevance

/openbsd/gnu/llvm/lldb/include/lldb/API/
H A DSBType.h50 void reset(lldb_private::TypeMemberImpl *);
52 lldb_private::TypeMemberImpl &ref();
54 const lldb_private::TypeMemberImpl &ref() const;
56 std::unique_ptr<lldb_private::TypeMemberImpl> m_opaque_up;
/openbsd/gnu/llvm/lldb/source/API/
H A DSBType.cpp419 sb_type_member.reset(new TypeMemberImpl( in GetDirectBaseClassAtIndex()
435 sb_type_member.reset(new TypeMemberImpl( in GetVirtualBaseClassAtIndex()
481 new TypeMemberImpl(TypeImplSP(new TypeImpl(field_type)), bit_offset, in GetFieldAtIndex()
656 m_opaque_up = std::make_unique<TypeMemberImpl>(rhs.ref()); in SBTypeMember()
665 m_opaque_up = std::make_unique<TypeMemberImpl>(rhs.ref()); in operator =()
761 void SBTypeMember::reset(TypeMemberImpl *type_member_impl) { in reset()
765 TypeMemberImpl &SBTypeMember::ref() { in ref()
767 m_opaque_up = std::make_unique<TypeMemberImpl>(); in ref()
771 const TypeMemberImpl &SBTypeMember::ref() const { return *m_opaque_up; } in ref()
/openbsd/gnu/llvm/lldb/include/lldb/Symbol/
H A DType.h359 class TypeMemberImpl {
361 TypeMemberImpl() = default;
363 TypeMemberImpl(const lldb::TypeImplSP &type_impl_sp, uint64_t bit_offset,
369 TypeMemberImpl(const lldb::TypeImplSP &type_impl_sp, uint64_t bit_offset) in TypeMemberImpl() function
/openbsd/gnu/llvm/lldb/bindings/interface/
H A DSBType.i60 std::unique_ptr<lldb_private::TypeMemberImpl> m_opaque_ap;
/openbsd/gnu/llvm/lldb/include/lldb/
H A Dlldb-forward.h258 class TypeMemberImpl; variable