reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Sema/SemaOpenMP.cpp
 3653         Clause->getClauseKind() == OMPC_in_reduction) {
 3656       auto *IRC = cast<OMPInReductionClause>(Clause);
 3661     if (isOpenMPPrivate(Clause->getClauseKind()) ||
 3662         Clause->getClauseKind() == OMPC_copyprivate ||
 3665          Clause->getClauseKind() == OMPC_copyin)) {
 3666       DSAStack->setForceVarCapturing(Clause->getClauseKind() == OMPC_copyin);
 3668       for (Stmt *VarRef : Clause->children()) {
 3676       if (auto *C = OMPClauseWithPreInit::get(Clause))
 3678       if (auto *C = OMPClauseWithPostUpdate::get(Clause)) {
 3683     if (Clause->getClauseKind() == OMPC_schedule)
 3684       SC = cast<OMPScheduleClause>(Clause);
 3685     else if (Clause->getClauseKind() == OMPC_ordered)
 3686       OC = cast<OMPOrderedClause>(Clause);
 3687     else if (Clause->getClauseKind() == OMPC_linear)
 3688       LCs.push_back(cast<OMPLinearClause>(Clause));