Home | History | Annotate | Download | only in AST

Lines Matching refs:NumExprs

338   unsigned NumExprs = NumOutputs + NumInputs;
341 this->Names = new (C) IdentifierInfo*[NumExprs];
342 std::copy(Names, Names + NumExprs, this->Names);
345 this->Exprs = new (C) Stmt*[NumExprs];
346 std::copy(Exprs, Exprs + NumExprs, this->Exprs);
349 this->Constraints = new (C) StringLiteral*[NumExprs];
350 std::copy(Constraints, Constraints + NumExprs, this->Constraints);
538 unsigned NumExprs = NumOutputs +NumInputs;
540 Names = new (C) IdentifierInfo*[NumExprs];
541 std::copy(names, names + NumExprs, Names);
543 Exprs = new (C) Stmt*[NumExprs];
544 std::copy(exprs, exprs + NumExprs, Exprs);
546 Constraints = new (C) StringLiteral*[NumExprs];
547 std::copy(constraints, constraints + NumExprs, Constraints);