Lines Matching refs:make_unique
257 addOperator("add", std::make_unique<AddOp>()); in SetTheory()
258 addOperator("sub", std::make_unique<SubOp>()); in SetTheory()
259 addOperator("and", std::make_unique<AndOp>()); in SetTheory()
260 addOperator("shl", std::make_unique<ShlOp>()); in SetTheory()
261 addOperator("trunc", std::make_unique<TruncOp>()); in SetTheory()
262 addOperator("rotl", std::make_unique<RotOp>(false)); in SetTheory()
263 addOperator("rotr", std::make_unique<RotOp>(true)); in SetTheory()
264 addOperator("decimate", std::make_unique<DecimateOp>()); in SetTheory()
265 addOperator("interleave", std::make_unique<InterleaveOp>()); in SetTheory()
266 addOperator("sequence", std::make_unique<SequenceOp>()); in SetTheory()
278 addExpander(ClassName, std::make_unique<FieldExpander>(FieldName)); in addFieldExpander()