Lines Matching defs:VarList

3217                                               ArrayRef<Expr *> VarList) {
3218 if (OMPThreadPrivateDecl *D = CheckOMPThreadPrivateDecl(Loc, VarList)) {
3257 ArrayRef<Expr *> VarList) {
3260 for (Expr *RefExpr : VarList) {
3439 SourceLocation Loc, ArrayRef<Expr *> VarList, ArrayRef<OMPClause *> Clauses,
3464 for (Expr *RefExpr : VarList) {
16884 ArrayRef<Expr *> VarList,
16896 Res = ActOnOpenMPPrivateClause(VarList, StartLoc, LParenLoc, EndLoc);
16899 Res = ActOnOpenMPFirstprivateClause(VarList, StartLoc, LParenLoc, EndLoc);
16905 VarList, static_cast<OpenMPLastprivateModifier>(ExtraModifier),
16909 Res = ActOnOpenMPSharedClause(VarList, StartLoc, LParenLoc, EndLoc);
16915 VarList, static_cast<OpenMPReductionClauseModifier>(ExtraModifier),
16921 VarList, StartLoc, LParenLoc, ColonLoc, EndLoc,
16926 VarList, StartLoc, LParenLoc, ColonLoc, EndLoc,
16933 VarList, Data.DepModOrTailExpr, StartLoc, LParenLoc,
16938 Res = ActOnOpenMPAlignedClause(VarList, Data.DepModOrTailExpr, StartLoc,
16942 Res = ActOnOpenMPCopyinClause(VarList, StartLoc, LParenLoc, EndLoc);
16945 Res = ActOnOpenMPCopyprivateClause(VarList, StartLoc, LParenLoc, EndLoc);
16948 Res = ActOnOpenMPFlushClause(VarList, StartLoc, LParenLoc, EndLoc);
16956 Data.DepModOrTailExpr, VarList, StartLoc, LParenLoc, EndLoc);
16965 ExtraModifierLoc, ColonLoc, VarList, Locs);
16971 Data.ReductionOrMapperId, ColonLoc, VarList, Locs);
16976 Data.ReductionOrMapperId, ColonLoc, VarList,
16980 Res = ActOnOpenMPUseDevicePtrClause(VarList, Locs);
16983 Res = ActOnOpenMPUseDeviceAddrClause(VarList, Locs);
16986 Res = ActOnOpenMPIsDevicePtrClause(VarList, Locs);
16989 Res = ActOnOpenMPHasDeviceAddrClause(VarList, Locs);
16992 Res = ActOnOpenMPAllocateClause(Data.DepModOrTailExpr, VarList, StartLoc,
16996 Res = ActOnOpenMPNontemporalClause(VarList, StartLoc, LParenLoc, EndLoc);
16999 Res = ActOnOpenMPInclusiveClause(VarList, StartLoc, LParenLoc, EndLoc);
17002 Res = ActOnOpenMPExclusiveClause(VarList, StartLoc, LParenLoc, EndLoc);
17006 Data.DepModOrTailExpr, VarList);
17011 ExtraModifierLoc, ColonLoc, VarList, StartLoc, LParenLoc, EndLoc);
17098 OMPClause *SemaOpenMP::ActOnOpenMPPrivateClause(ArrayRef<Expr *> VarList,
17106 for (Expr *RefExpr : VarList) {
17246 OMPClause *SemaOpenMP::ActOnOpenMPFirstprivateClause(ArrayRef<Expr *> VarList,
17258 for (Expr *RefExpr : VarList) {
17536 ArrayRef<Expr *> VarList, OpenMPLastprivateModifier LPKind,
17554 for (Expr *RefExpr : VarList) {
17719 OMPClause *SemaOpenMP::ActOnOpenMPSharedClause(ArrayRef<Expr *> VarList,
17724 for (Expr *RefExpr : VarList) {
18213 ArrayRef<Expr *> VarList, SourceLocation StartLoc, SourceLocation LParenLoc,
18323 for (Expr *RefExpr : VarList) {
18943 ArrayRef<Expr *> VarList, OpenMPReductionClauseModifier Modifier,
18970 ReductionData RD(VarList.size(), Modifier);
18971 if (actOnOMPReductionKindClause(SemaRef, DSAStack, OMPC_reduction, VarList,
18988 ArrayRef<Expr *> VarList, SourceLocation StartLoc, SourceLocation LParenLoc,
18992 ReductionData RD(VarList.size());
18994 VarList, StartLoc, LParenLoc, ColonLoc,
19008 ArrayRef<Expr *> VarList, SourceLocation StartLoc, SourceLocation LParenLoc,
19012 ReductionData RD(VarList.size());
19013 if (actOnOMPReductionKindClause(SemaRef, DSAStack, OMPC_in_reduction, VarList,
19082 ArrayRef<Expr *> VarList, Expr *Step, SourceLocation StartLoc,
19099 for (Expr *RefExpr : VarList) {
19328 ArrayRef<Expr *> VarList, Expr *Alignment, SourceLocation StartLoc,
19331 for (Expr *RefExpr : VarList) {
19402 OMPClause *SemaOpenMP::ActOnOpenMPCopyinClause(ArrayRef<Expr *> VarList,
19410 for (Expr *RefExpr : VarList) {
19498 OMPClause *SemaOpenMP::ActOnOpenMPCopyprivateClause(ArrayRef<Expr *> VarList,
19506 for (Expr *RefExpr : VarList) {
19612 OMPClause *SemaOpenMP::ActOnOpenMPFlushClause(ArrayRef<Expr *> VarList,
19616 if (VarList.empty())
19620 VarList);
19683 ArrayRef<Expr *> VarList, DSAStackTy *Stack,
19697 for (Expr *RefExpr : VarList) {
19791 TotalDepCount > VarList.size() &&
19793 Stack->getParentLoopControlVariable(VarList.size() + 1)) {
19795 << 1 << Stack->getParentLoopControlVariable(VarList.size() + 1);
19802 ArrayRef<Expr *> VarList, SourceLocation StartLoc, SourceLocation LParenLoc,
19858 SemaRef, DepKind == OMPC_DEPEND_source, VarList, DSAStack, EndLoc);
19863 for (Expr *RefExpr : VarList) {
20898 ArrayRef<Expr *> VarList;
20908 MappableVarListInfo(ArrayRef<Expr *> VarList) : VarList(VarList) {
20911 VarComponents.reserve(VarList.size());
20912 VarBaseDeclarations.reserve(VarList.size());
20960 for (Expr *RE : MVLI.VarList) {
20969 "Expect the size of UnresolvedMappers to match with that of VarList");
21242 SourceLocation ColonLoc, ArrayRef<Expr *> VarList,
21271 MappableVarListInfo MVLI(VarList);
22381 SourceLocation ColonLoc, ArrayRef<Expr *> VarList,
22402 MappableVarListInfo MVLI(VarList);
22418 SourceLocation ColonLoc, ArrayRef<Expr *> VarList,
22439 MappableVarListInfo MVLI(VarList);
22452 SemaOpenMP::ActOnOpenMPUseDevicePtrClause(ArrayRef<Expr *> VarList,
22454 MappableVarListInfo MVLI(VarList);
22458 for (Expr *RefExpr : VarList) {
22538 SemaOpenMP::ActOnOpenMPUseDeviceAddrClause(ArrayRef<Expr *> VarList,
22540 MappableVarListInfo MVLI(VarList);
22542 for (Expr *RefExpr : VarList) {
22592 SemaOpenMP::ActOnOpenMPIsDevicePtrClause(ArrayRef<Expr *> VarList,
22594 MappableVarListInfo MVLI(VarList);
22595 for (Expr *RefExpr : VarList) {
22676 SemaOpenMP::ActOnOpenMPHasDeviceAddrClause(ArrayRef<Expr *> VarList,
22678 MappableVarListInfo MVLI(VarList);
22679 for (Expr *RefExpr : VarList) {
22764 Expr *Allocator, ArrayRef<Expr *> VarList, SourceLocation StartLoc,
22794 for (Expr *RefExpr : VarList) {
22826 OMPClause *SemaOpenMP::ActOnOpenMPNontemporalClause(ArrayRef<Expr *> VarList,
22831 for (Expr *RefExpr : VarList) {
22878 OMPClause *SemaOpenMP::ActOnOpenMPInclusiveClause(ArrayRef<Expr *> VarList,
22883 for (Expr *RefExpr : VarList) {
22919 OMPClause *SemaOpenMP::ActOnOpenMPExclusiveClause(ArrayRef<Expr *> VarList,
22924 for (Expr *RefExpr : VarList) {
23200 SourceLocation ColonLoc, ArrayRef<Expr *> VarList, SourceLocation StartLoc,
23221 VarList, DSAStack, EndLoc);