Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DValueObjectVTable.cpp147 ValueObjectSP ValueObjectVTable::Create(ValueObject &parent) { in Create()
148 return (new ValueObjectVTable(parent))->GetSP(); in Create()
151 ValueObjectVTable::ValueObjectVTable(ValueObject &parent) in ValueObjectVTable() function in ValueObjectVTable
156 std::optional<uint64_t> ValueObjectVTable::GetByteSize() { in GetByteSize()
162 size_t ValueObjectVTable::CalculateNumChildren(uint32_t max) { in CalculateNumChildren()
170 ConstString ValueObjectVTable::GetTypeName() { in GetTypeName()
178 ConstString ValueObjectVTable::GetDisplayTypeName() { in GetDisplayTypeName()
184 bool ValueObjectVTable::IsInScope() { return GetParent()->IsInScope(); } in IsInScope()
186 ValueObject *ValueObjectVTable::CreateChildAtIndex(size_t idx, in CreateChildAtIndex()
194 bool ValueObjectVTable::UpdateValue() { in UpdateValue()
[all …]
H A DValueObject.cpp3121 return ValueObjectVTable::Create(*this); in GetVTable()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectVTable.h59 class ValueObjectVTable : public ValueObject {
61 ~ValueObjectVTable() override;
96 ValueObjectVTable(ValueObject &parent);
99 ValueObjectVTable(const ValueObjectVTable &) = delete;
100 const ValueObjectVTable &operator=(const ValueObjectVTable &) = delete;
H A DValueObjectChild.h76 friend class ValueObjectVTable; variable
/freebsd-14.2/lib/clang/liblldb/
H A DMakefile206 SRCS+= Core/ValueObjectVTable.cpp