Home | History | Annotate | Download | only in AST

Lines Matching refs:NumExprs

433   unsigned NumExprs = NumOutputs + NumInputs;
436 this->Names = new (C) IdentifierInfo*[NumExprs];
437 std::copy(Names, Names + NumExprs, this->Names);
440 this->Exprs = new (C) Stmt*[NumExprs];
441 std::copy(Exprs, Exprs + NumExprs, this->Exprs);
444 this->Constraints = new (C) StringLiteral*[NumExprs];
445 std::copy(Constraints, Constraints + NumExprs, this->Constraints);
693 unsigned NumExprs = NumOutputs + NumInputs;
695 Names = new (C) IdentifierInfo*[NumExprs];
696 std::copy(names, names + NumExprs, Names);
698 Exprs = new (C) Stmt*[NumExprs];
699 std::copy(exprs, exprs + NumExprs, Exprs);
701 Constraints = new (C) StringLiteral*[NumExprs];
702 std::copy(constraints, constraints + NumExprs, Constraints);