Lines Matching refs:SrcExprs
452 void OMPLastprivateClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs() argument
453 assert(SrcExprs.size() == varlist_size() && "Number of source expressions is " in setSourceExprs()
456 std::copy(SrcExprs.begin(), SrcExprs.end(), getPrivateCopies().end()); in setSourceExprs()
476 SourceLocation EndLoc, ArrayRef<Expr *> VL, ArrayRef<Expr *> SrcExprs, in Create() argument
484 Clause->setSourceExprs(SrcExprs); in Create()
609 void OMPCopyinClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs() argument
610 assert(SrcExprs.size() == varlist_size() && "Number of source expressions is " in setSourceExprs()
613 std::copy(SrcExprs.begin(), SrcExprs.end(), varlist_end()); in setSourceExprs()
633 SourceLocation EndLoc, ArrayRef<Expr *> VL, ArrayRef<Expr *> SrcExprs, in Create() argument
639 Clause->setSourceExprs(SrcExprs); in Create()
650 void OMPCopyprivateClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs() argument
651 assert(SrcExprs.size() == varlist_size() && "Number of source expressions is " in setSourceExprs()
654 std::copy(SrcExprs.begin(), SrcExprs.end(), varlist_end()); in setSourceExprs()
674 SourceLocation EndLoc, ArrayRef<Expr *> VL, ArrayRef<Expr *> SrcExprs, in Create() argument
680 Clause->setSourceExprs(SrcExprs); in Create()