Lines Matching refs:StructConstant
49 class StructConstant; variable
72 virtual StructConstant* AsStructConstant() { return nullptr; } in AsStructConstant()
85 virtual const StructConstant* AsStructConstant() const { return nullptr; } in AsStructConstant()
321 class StructConstant : public CompositeConstant {
323 StructConstant(const Struct* ty) : CompositeConstant(ty) {} in StructConstant() function
324 StructConstant(const Struct* ty, in StructConstant() function
327 StructConstant(const Struct* ty, std::vector<const Constant*>&& components) in StructConstant() function
330 StructConstant* AsStructConstant() override { return this; } in AsStructConstant()
331 const StructConstant* AsStructConstant() const override { return this; } in AsStructConstant()
334 std::unique_ptr<StructConstant> CopyStructConstant() const { in CopyStructConstant()
335 return MakeUnique<StructConstant>(type_->AsStruct(), components_); in CopyStructConstant()