Searched refs:OMPUpdateClause (Results 1 – 11 of 11) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
H A D | OpenMPClause.cpp | 374 OMPUpdateClause *OMPUpdateClause::Create(const ASTContext &C, in Create() 377 return new (C) OMPUpdateClause(StartLoc, EndLoc, /*IsExtended=*/false); in Create() 380 OMPUpdateClause * 381 OMPUpdateClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create() 386 alignof(OMPUpdateClause)); in Create() 388 new (Mem) OMPUpdateClause(StartLoc, EndLoc, /*IsExtended=*/true); in Create() 395 OMPUpdateClause *OMPUpdateClause::CreateEmpty(const ASTContext &C, in CreateEmpty() 398 return new (C) OMPUpdateClause(/*IsExtended=*/false); in CreateEmpty() 401 alignof(OMPUpdateClause)); in CreateEmpty() 402 auto *Clause = new (Mem) OMPUpdateClause(/*IsExtended=*/true); in CreateEmpty() [all …]
|
H A D | StmtProfile.cpp | 538 void OMPClauseProfiler::VisitOMPUpdateClause(const OMPUpdateClause *) {} in VisitOMPUpdateClause() argument
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
H A D | OpenMPClause.h | 1883 class OMPUpdateClause final 1885 private llvm::TrailingObjects<OMPUpdateClause, SourceLocation, 1922 OMPUpdateClause(SourceLocation StartLoc, SourceLocation EndLoc, in OMPUpdateClause() function 1928 OMPUpdateClause(bool IsExtended) in OMPUpdateClause() function 1938 static OMPUpdateClause *Create(const ASTContext &C, SourceLocation StartLoc, 1949 static OMPUpdateClause *Create(const ASTContext &C, SourceLocation StartLoc, 1960 static OMPUpdateClause *CreateEmpty(const ASTContext &C, bool IsExtended);
|
H A D | RecursiveASTVisitor.h | 3172 bool RecursiveASTVisitor<Derived>::VisitOMPUpdateClause(OMPUpdateClause *) {
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/ |
H A D | OMP.td | 159 def OMPC_Update : Clause<"update"> { let clangClass = "OMPUpdateClause"; }
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/ |
H A D | ASTReader.cpp | 11757 C = OMPUpdateClause::CreateEmpty(Context, Record.readInt()); in readClause() 12097 void OMPClauseReader::VisitOMPUpdateClause(OMPUpdateClause *C) { in VisitOMPUpdateClause()
|
H A D | ASTWriter.cpp | 6120 void OMPClauseWriter::VisitOMPUpdateClause(OMPUpdateClause *C) { in VisitOMPUpdateClause()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
H A D | CGStmtOpenMP.cpp | 4828 if (const auto *UC = S.getSingleClause<OMPUpdateClause>()) { in EmitOMPDepobjDirective()
|
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/ |
H A D | CIndex.cpp | 2261 void OMPClauseEnqueue::VisitOMPUpdateClause(const OMPUpdateClause *) {} in VisitOMPUpdateClause() argument
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
H A D | SemaOpenMP.cpp | 14274 return OMPUpdateClause::Create(Context, StartLoc, LParenLoc, KindKwLoc, Kind, in ActOnOpenMPUpdateClause() 14686 return OMPUpdateClause::Create(Context, StartLoc, EndLoc); in ActOnOpenMPUpdateClause()
|
H A D | TreeTransform.h | 9316 TreeTransform<Derived>::TransformOMPUpdateClause(OMPUpdateClause *C) { in TransformOMPUpdateClause()
|