Lines Matching refs:SrcExprs
103 void OMPLastprivateClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs() argument
104 assert(SrcExprs.size() == varlist_size() && "Number of source expressions is " in setSourceExprs()
107 std::copy(SrcExprs.begin(), SrcExprs.end(), getPrivateCopies().end()); in setSourceExprs()
127 SourceLocation EndLoc, ArrayRef<Expr *> VL, ArrayRef<Expr *> SrcExprs, in Create() argument
135 Clause->setSourceExprs(SrcExprs); in Create()
252 void OMPCopyinClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs() argument
253 assert(SrcExprs.size() == varlist_size() && "Number of source expressions is " in setSourceExprs()
256 std::copy(SrcExprs.begin(), SrcExprs.end(), varlist_end()); in setSourceExprs()
276 SourceLocation EndLoc, ArrayRef<Expr *> VL, ArrayRef<Expr *> SrcExprs, in Create() argument
284 Clause->setSourceExprs(SrcExprs); in Create()
297 void OMPCopyprivateClause::setSourceExprs(ArrayRef<Expr *> SrcExprs) { in setSourceExprs() argument
298 assert(SrcExprs.size() == varlist_size() && "Number of source expressions is " in setSourceExprs()
301 std::copy(SrcExprs.begin(), SrcExprs.end(), varlist_end()); in setSourceExprs()
321 SourceLocation EndLoc, ArrayRef<Expr *> VL, ArrayRef<Expr *> SrcExprs, in Create() argument
329 Clause->setSourceExprs(SrcExprs); in Create()