Searched refs:OMPUpdateClause (Results 1 – 10 of 10) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | OpenMPClause.cpp | 395 OMPUpdateClause *OMPUpdateClause::Create(const ASTContext &C, in Create() 398 return new (C) OMPUpdateClause(StartLoc, EndLoc, /*IsExtended=*/false); in Create() 401 OMPUpdateClause * 402 OMPUpdateClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create() 407 alignof(OMPUpdateClause)); in Create() 409 new (Mem) OMPUpdateClause(StartLoc, EndLoc, /*IsExtended=*/true); in Create() 416 OMPUpdateClause *OMPUpdateClause::CreateEmpty(const ASTContext &C, in CreateEmpty() 419 return new (C) OMPUpdateClause(/*IsExtended=*/false); in CreateEmpty() 422 alignof(OMPUpdateClause)); in CreateEmpty() 423 auto *Clause = new (Mem) OMPUpdateClause(/*IsExtended=*/true); in CreateEmpty() [all …]
|
| H A D | StmtProfile.cpp | 592 void OMPClauseProfiler::VisitOMPUpdateClause(const OMPUpdateClause *) {} in VisitOMPUpdateClause() argument
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 2606 class OMPUpdateClause final 2608 private llvm::TrailingObjects<OMPUpdateClause, SourceLocation, 2645 OMPUpdateClause(SourceLocation StartLoc, SourceLocation EndLoc, in OMPUpdateClause() function 2651 OMPUpdateClause(bool IsExtended) in OMPUpdateClause() function 2661 static OMPUpdateClause *Create(const ASTContext &C, SourceLocation StartLoc, 2672 static OMPUpdateClause *Create(const ASTContext &C, SourceLocation StartLoc, 2683 static OMPUpdateClause *CreateEmpty(const ASTContext &C, bool IsExtended);
|
| H A D | RecursiveASTVisitor.h | 3525 bool RecursiveASTVisitor<Derived>::VisitOMPUpdateClause(OMPUpdateClause *) {
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
| H A D | OMP.td | 537 let clangClass = "OMPUpdateClause";
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 11145 C = OMPUpdateClause::CreateEmpty(Context, Record.readInt()); in readClause() 11576 void OMPClauseReader::VisitOMPUpdateClause(OMPUpdateClause *C) { in VisitOMPUpdateClause()
|
| H A D | ASTWriter.cpp | 7898 void OMPClauseWriter::VisitOMPUpdateClause(OMPUpdateClause *C) { in VisitOMPUpdateClause()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGStmtOpenMP.cpp | 5653 if (const auto *UC = S.getSingleClause<OMPUpdateClause>()) { in EmitOMPDepobjDirective()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 16513 return OMPUpdateClause::Create(getASTContext(), StartLoc, LParenLoc, in ActOnOpenMPUpdateClause() 17094 return OMPUpdateClause::Create(getASTContext(), StartLoc, EndLoc); in ActOnOpenMPUpdateClause()
|
| H A D | TreeTransform.h | 10680 TreeTransform<Derived>::TransformOMPUpdateClause(OMPUpdateClause *C) { in TransformOMPUpdateClause()
|