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

Declarations

tools/clang/include/clang/Basic/OpenMPKinds.def
  290 OPENMP_CLAUSE(copyin,  OMPCopyinClause)

References

tools/clang/include/clang/AST/OpenMPClause.h
 3538       : OMPVarListClause<OMPCopyinClause>(OMPC_copyin, StartLoc, LParenLoc,
 3545       : OMPVarListClause<OMPCopyinClause>(OMPC_copyin, SourceLocation(),
 3675     return T->getClauseKind() == OMPC_copyin;
tools/clang/include/clang/AST/RecursiveASTVisitor.h
 3151   TRY_TO(VisitOMPClauseList(C));
 3152   for (auto *E : C->source_exprs()) {
 3155   for (auto *E : C->destination_exprs()) {
 3158   for (auto *E : C->assignment_ops()) {
tools/clang/include/clang/Basic/OpenMPKinds.def
  340 OPENMP_PARALLEL_CLAUSE(copyin)
  448 OPENMP_PARALLEL_FOR_CLAUSE(copyin)
  465 OPENMP_PARALLEL_FOR_SIMD_CLAUSE(copyin)
  485 OPENMP_PARALLEL_SECTIONS_CLAUSE(copyin)
  742 OPENMP_PARALLEL_MASTER_TASKLOOP_CLAUSE(copyin)
  770 OPENMP_DISTRIBUTE_PARALLEL_FOR_CLAUSE(copyin)
  786 OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(copyin)
  917 OPENMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_CLAUSE(copyin)
tools/clang/lib/AST/OpenMPClause.cpp
  105   case OMPC_copyin:
  177   case OMPC_copyin:
tools/clang/lib/Basic/OpenMPKinds.cpp
  177   case OMPC_copyin:
  371   case OMPC_copyin:
 1026   return Kind == OMPC_threadprivate || Kind == OMPC_copyin;
tools/clang/lib/CodeGen/CGStmtOpenMP.cpp
 4041   case OMPC_copyin:
tools/clang/lib/Parse/ParseOpenMP.cpp
 2095   case OMPC_copyin:
tools/clang/lib/Sema/SemaOpenMP.cpp
 2016             D, [](OpenMPClauseKind K) { return K == OMPC_copyin; }, Level))
 3665          Clause->getClauseKind() == OMPC_copyin)) {
 3666       DSAStack->setForceVarCapturing(Clause->getClauseKind() == OMPC_copyin);
 4630       case OMPC_copyin:
10291   case OMPC_copyin:
10933   case OMPC_copyin:
11348   case OMPC_copyin:
11529   case OMPC_copyin:
11752   case OMPC_copyin:
11909   case OMPC_copyin:
14154           << getOpenMPClauseName(OMPC_copyin)
14186     DSAStack->addDSA(VD, DE, OMPC_copyin);
tools/clang/lib/Sema/TreeTransform.h
 8945   Vars.reserve(C->varlist_size());
 8946   for (auto *VE : C->varlists()) {
 8952   return getDerived().RebuildOMPCopyinClause(Vars, C->getBeginLoc(),
 8953                                              C->getLParenLoc(), C->getEndLoc());
 8953                                              C->getLParenLoc(), C->getEndLoc());
tools/clang/lib/Serialization/ASTReader.cpp
12382   case OMPC_copyin: