Home
last modified time | relevance | path

Searched refs:OMPExclusiveClause (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DOpenMPClause.cpp1435 OMPExclusiveClause *OMPExclusiveClause::Create(const ASTContext &C, in Create()
1442 new (Mem) OMPExclusiveClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
1447 OMPExclusiveClause *OMPExclusiveClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
1450 return new (Mem) OMPExclusiveClause(N); in CreateEmpty()
2208 void OMPClausePrinter::VisitOMPExclusiveClause(OMPExclusiveClause *Node) { in VisitOMPExclusiveClause()
H A DStmtProfile.cpp855 void OMPClauseProfiler::VisitOMPExclusiveClause(const OMPExclusiveClause *C) { in VisitOMPExclusiveClause()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DOpenMPClause.h7935 class OMPExclusiveClause final
7936 : public OMPVarListClause<OMPExclusiveClause>,
7937 private llvm::TrailingObjects<OMPExclusiveClause, Expr *> {
7948 OMPExclusiveClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPExclusiveClause() function
7950 : OMPVarListClause<OMPExclusiveClause>(llvm::omp::OMPC_exclusive, in OMPExclusiveClause()
7956 explicit OMPExclusiveClause(unsigned N) in OMPExclusiveClause() function
7957 : OMPVarListClause<OMPExclusiveClause>(llvm::omp::OMPC_exclusive, in OMPExclusiveClause()
7969 static OMPExclusiveClause *Create(const ASTContext &C,
7978 static OMPExclusiveClause *CreateEmpty(const ASTContext &C, unsigned N);
7986 auto Children = const_cast<OMPExclusiveClause *>(this)->children(); in children()
H A DRecursiveASTVisitor.h3273 OMPExclusiveClause *C) {
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td296 let clangClass = "OMPExclusiveClause";
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReader.cpp11940 C = OMPExclusiveClause::CreateEmpty(Context, Record.readInt()); in readClause()
12900 void OMPClauseReader::VisitOMPExclusiveClause(OMPExclusiveClause *C) { in VisitOMPExclusiveClause()
H A DASTWriter.cpp6655 void OMPClauseWriter::VisitOMPExclusiveClause(OMPExclusiveClause *C) { in VisitOMPExclusiveClause()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp2362 void OMPClauseEnqueue::VisitOMPExclusiveClause(const OMPExclusiveClause *C) { in VisitOMPExclusiveClause()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DTreeTransform.h10098 TreeTransform<Derived>::TransformOMPExclusiveClause(OMPExclusiveClause *C) { in TransformOMPExclusiveClause()
H A DSemaOpenMP.cpp20687 return OMPExclusiveClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars); in ActOnOpenMPExclusiveClause()