Searched refs:ValueObjectCast (Results 1 – 6 of 6) sorted by relevance
| /freebsd/contrib/llvm-project/lldb/source/ValueObject/ |
| H A D | ValueObjectCast.cpp | 25 lldb::ValueObjectSP ValueObjectCast::Create(ValueObject &parent, in Create() 28 ValueObjectCast *cast_valobj_ptr = in Create() 29 new ValueObjectCast(parent, name, cast_type); in Create() 33 ValueObjectCast::ValueObjectCast(ValueObject &parent, ConstString name, in ValueObjectCast() function in ValueObjectCast 40 ValueObjectCast::~ValueObjectCast() = default; 42 CompilerType ValueObjectCast::GetCompilerTypeImpl() { return m_cast_type; } in GetCompilerTypeImpl() 44 llvm::Expected<uint32_t> ValueObjectCast::CalculateNumChildren(uint32_t max) { in CalculateNumChildren() 52 llvm::Expected<uint64_t> ValueObjectCast::GetByteSize() { in GetByteSize() 57 lldb::ValueType ValueObjectCast::GetValueType() const { in GetValueType() 62 bool ValueObjectCast::UpdateValue() { in UpdateValue() [all …]
|
| H A D | ValueObjectConstResultCast.cpp | 26 : ValueObjectCast(parent, name, cast_type), m_impl(this, live_address) { in ValueObjectConstResultCast()
|
| H A D | ValueObject.cpp | 2901 return ValueObjectCast::Create(*this, GetName(), compiler_type); in DoCast() 2941 return ValueObjectCast::Create(*this, new_name, GetCompilerType()); in Clone()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/ValueObject/ |
| H A D | ValueObjectCast.h | 26 class ValueObjectCast : public ValueObject { 28 ~ValueObjectCast() override; 50 ValueObjectCast(ValueObject &parent, ConstString name, 60 ValueObjectCast(const ValueObjectCast &) = delete; 61 const ValueObjectCast &operator=(const ValueObjectCast &) = delete;
|
| H A D | ValueObjectConstResultCast.h | 28 class ValueObjectConstResultCast : public ValueObjectCast { 39 return ValueObjectCast::GetCompilerType(); in GetCompilerType()
|
| /freebsd/lib/clang/liblldb/ |
| H A D | Makefile | 774 SRCS+= ValueObject/ValueObjectCast.cpp
|