Lines Matching refs:ValueObjectVTable
149 ValueObjectSP ValueObjectVTable::Create(ValueObject &parent) { in Create()
150 return (new ValueObjectVTable(parent))->GetSP(); in Create()
153 ValueObjectVTable::ValueObjectVTable(ValueObject &parent) in ValueObjectVTable() function in ValueObjectVTable
158 std::optional<uint64_t> ValueObjectVTable::GetByteSize() { in GetByteSize()
164 llvm::Expected<uint32_t> ValueObjectVTable::CalculateNumChildren(uint32_t max) { in CalculateNumChildren()
170 ValueType ValueObjectVTable::GetValueType() const { return eValueTypeVTable; } in GetValueType()
172 ConstString ValueObjectVTable::GetTypeName() { in GetTypeName()
178 ConstString ValueObjectVTable::GetQualifiedTypeName() { return GetTypeName(); } in GetQualifiedTypeName()
180 ConstString ValueObjectVTable::GetDisplayTypeName() { in GetDisplayTypeName()
186 bool ValueObjectVTable::IsInScope() { return GetParent()->IsInScope(); } in IsInScope()
188 ValueObject *ValueObjectVTable::CreateChildAtIndex(size_t idx) { in CreateChildAtIndex()
192 bool ValueObjectVTable::UpdateValue() { in UpdateValue()
270 CompilerType ValueObjectVTable::GetCompilerTypeImpl() { return CompilerType(); } in GetCompilerTypeImpl()
272 ValueObjectVTable::~ValueObjectVTable() = default;