Lines Matching refs:SrcExprs
229 void OMPLastprivateClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs() argument
230 assert(SrcExprs.size() == varlist_size() && "Number of source expressions is " in setSourceExprs()
233 std::copy(SrcExprs.begin(), SrcExprs.end(), getPrivateCopies().end()); in setSourceExprs()
253 SourceLocation EndLoc, ArrayRef<Expr *> VL, ArrayRef<Expr *> SrcExprs, in Create() argument
260 Clause->setSourceExprs(SrcExprs); in Create()
368 void OMPCopyinClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs() argument
369 assert(SrcExprs.size() == varlist_size() && "Number of source expressions is " in setSourceExprs()
372 std::copy(SrcExprs.begin(), SrcExprs.end(), varlist_end()); in setSourceExprs()
392 SourceLocation EndLoc, ArrayRef<Expr *> VL, ArrayRef<Expr *> SrcExprs, in Create() argument
398 Clause->setSourceExprs(SrcExprs); in Create()
409 void OMPCopyprivateClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs() argument
410 assert(SrcExprs.size() == varlist_size() && "Number of source expressions is " in setSourceExprs()
413 std::copy(SrcExprs.begin(), SrcExprs.end(), varlist_end()); in setSourceExprs()
433 SourceLocation EndLoc, ArrayRef<Expr *> VL, ArrayRef<Expr *> SrcExprs, in Create() argument
439 Clause->setSourceExprs(SrcExprs); in Create()