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

Declarations

tools/clang/include/clang/Basic/OpenMPKinds.def
  323 OPENMP_CLAUSE(in_reduction,  OMPInReductionClause)

References

tools/clang/include/clang/AST/OpenMPClause.h
 2909       : OMPVarListClause<OMPInReductionClause>(OMPC_in_reduction, StartLoc,
 2919             OMPC_in_reduction, SourceLocation(), SourceLocation(),
 3123     return T->getClauseKind() == OMPC_in_reduction;
tools/clang/include/clang/AST/RecursiveASTVisitor.h
 3227   TRY_TO(TraverseNestedNameSpecifierLoc(C->getQualifierLoc()));
 3228   TRY_TO(TraverseDeclarationNameInfo(C->getNameInfo()));
 3229   TRY_TO(VisitOMPClauseList(C));
 3230   TRY_TO(VisitOMPClauseWithPostUpdate(C));
 3231   for (auto *E : C->privates()) {
 3234   for (auto *E : C->lhs_exprs()) {
 3237   for (auto *E : C->rhs_exprs()) {
 3240   for (auto *E : C->reduction_ops()) {
 3243   for (auto *E : C->taskgroup_descriptors())
tools/clang/include/clang/Basic/OpenMPKinds.def
  500 OPENMP_TASK_CLAUSE(in_reduction)
  655 OPENMP_TASKLOOP_CLAUSE(in_reduction)
  678 OPENMP_TASKLOOP_SIMD_CLAUSE(in_reduction)
  697 OPENMP_MASTER_TASKLOOP_CLAUSE(in_reduction)
  720 OPENMP_MASTER_TASKLOOP_SIMD_CLAUSE(in_reduction)
tools/clang/lib/AST/OpenMPClause.cpp
   73   case OMPC_in_reduction:
  157   case OMPC_in_reduction:
tools/clang/lib/Basic/OpenMPKinds.cpp
  175   case OMPC_in_reduction:
  369   case OMPC_in_reduction:
 1022          Kind == OMPC_in_reduction; // TODO add next clauses like 'reduction'.
tools/clang/lib/CodeGen/CGStmtOpenMP.cpp
 4030   case OMPC_in_reduction:
tools/clang/lib/Parse/ParseOpenMP.cpp
 2092   case OMPC_in_reduction:
 2570       Kind == OMPC_in_reduction) {
 2717        Kind != OMPC_in_reduction && Kind != OMPC_depend && Kind != OMPC_map) ||
tools/clang/lib/Sema/SemaOpenMP.cpp
 3653         Clause->getClauseKind() == OMPC_in_reduction) {
 4174     } else if (Cl->getClauseKind() == OMPC_in_reduction) {
 4627       case OMPC_in_reduction:
10288   case OMPC_in_reduction:
10922   case OMPC_in_reduction:
11345   case OMPC_in_reduction:
11526   case OMPC_in_reduction:
11749   case OMPC_in_reduction:
11896   case OMPC_in_reduction:
13588     if (ClauseKind == OMPC_in_reduction) {
13729   if (actOnOMPReductionKindClause(*this, DSAStack, OMPC_in_reduction, VarList,
tools/clang/lib/Sema/TreeTransform.h
 8862   Vars.reserve(C->varlist_size());
 8863   for (auto *VE : C->varlists()) {
 8870   ReductionIdScopeSpec.Adopt(C->getQualifierLoc());
 8872   DeclarationNameInfo NameInfo = C->getNameInfo();
 8881   for (auto *E : C->reduction_ops()) {
 8899       Vars, C->getBeginLoc(), C->getLParenLoc(), C->getColonLoc(),
 8899       Vars, C->getBeginLoc(), C->getLParenLoc(), C->getColonLoc(),
 8899       Vars, C->getBeginLoc(), C->getLParenLoc(), C->getColonLoc(),
 8900       C->getEndLoc(), ReductionIdScopeSpec, NameInfo, UnresolvedReductions);
tools/clang/lib/Serialization/ASTReader.cpp
12373   case OMPC_in_reduction: