Lines Matching refs:ValueObjectVTable
147 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()
168 ValueType ValueObjectVTable::GetValueType() const { return eValueTypeVTable; } in GetValueType()
170 ConstString ValueObjectVTable::GetTypeName() { in GetTypeName()
176 ConstString ValueObjectVTable::GetQualifiedTypeName() { return GetTypeName(); } in GetQualifiedTypeName()
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()
272 CompilerType ValueObjectVTable::GetCompilerTypeImpl() { return CompilerType(); } in GetCompilerTypeImpl()
274 ValueObjectVTable::~ValueObjectVTable() = default;