Lines Matching defs:ty
138 Constant(const Type* ty) : type_(ty) {} in Constant()
167 ScalarConstant(const Type* ty, const std::vector<uint32_t>& w) in ScalarConstant()
169 ScalarConstant(const Type* ty, std::vector<uint32_t>&& w) in ScalarConstant()
177 IntConstant(const Integer* ty, const std::vector<uint32_t>& w) in IntConstant()
179 IntConstant(const Integer* ty, std::vector<uint32_t>&& w) in IntConstant()
227 FloatConstant(const Float* ty, const std::vector<uint32_t>& w) in FloatConstant()
229 FloatConstant(const Float* ty, std::vector<uint32_t>&& w) in FloatConstant()
268 BoolConstant(const Bool* ty, bool v) in BoolConstant()
311 CompositeConstant(const Type* ty) : Constant(ty), components_() {} in CompositeConstant()
312 CompositeConstant(const Type* ty, in CompositeConstant()
315 CompositeConstant(const Type* ty, std::vector<const Constant*>&& components) in CompositeConstant()
323 StructConstant(const Struct* ty) : CompositeConstant(ty) {} in StructConstant()
324 StructConstant(const Struct* ty, in StructConstant()
327 StructConstant(const Struct* ty, std::vector<const Constant*>&& components) in StructConstant()
345 VectorConstant(const Vector* ty) in VectorConstant()
347 VectorConstant(const Vector* ty, in VectorConstant()
351 VectorConstant(const Vector* ty, std::vector<const Constant*>&& components) in VectorConstant()
378 MatrixConstant(const Matrix* ty) in MatrixConstant()
380 MatrixConstant(const Matrix* ty, in MatrixConstant()
384 MatrixConstant(const Vector* ty, std::vector<const Constant*>&& components) in MatrixConstant()
411 ArrayConstant(const Array* ty) : CompositeConstant(ty) {} in ArrayConstant()
412 ArrayConstant(const Array* ty, const std::vector<const Constant*>& components) in ArrayConstant()
414 ArrayConstant(const Array* ty, std::vector<const Constant*>&& components) in ArrayConstant()
432 NullConstant(const Type* ty) : Constant(ty) {} in NullConstant()