Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp1544 OMPExclusiveClause *OMPExclusiveClause::Create(const ASTContext &C, in Create()
1551 new (Mem) OMPExclusiveClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
1556 OMPExclusiveClause *OMPExclusiveClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
1559 return new (Mem) OMPExclusiveClause(N); in CreateEmpty()
2473 void OMPClausePrinter::VisitOMPExclusiveClause(OMPExclusiveClause *Node) { in VisitOMPExclusiveClause()
H A DStmtProfile.cpp906 void OMPClauseProfiler::VisitOMPExclusiveClause(const OMPExclusiveClause *C) { in VisitOMPExclusiveClause()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h8437 class OMPExclusiveClause final
8438 : public OMPVarListClause<OMPExclusiveClause>,
8439 private llvm::TrailingObjects<OMPExclusiveClause, Expr *> {
8450 OMPExclusiveClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPExclusiveClause() function
8452 : OMPVarListClause<OMPExclusiveClause>(llvm::omp::OMPC_exclusive, in OMPExclusiveClause()
8458 explicit OMPExclusiveClause(unsigned N) in OMPExclusiveClause() function
8459 : OMPVarListClause<OMPExclusiveClause>(llvm::omp::OMPC_exclusive, in OMPExclusiveClause()
8471 static OMPExclusiveClause *Create(const ASTContext &C,
8480 static OMPExclusiveClause *CreateEmpty(const ASTContext &C, unsigned N);
8488 auto Children = const_cast<OMPExclusiveClause *>(this)->children(); in children()
H A DRecursiveASTVisitor.h3570 OMPExclusiveClause *C) {
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td152 let clangClass = "OMPExclusiveClause";
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp10718 C = OMPExclusiveClause::CreateEmpty(Context, Record.readInt()); in readClause()
11791 void OMPClauseReader::VisitOMPExclusiveClause(OMPExclusiveClause *C) { in VisitOMPExclusiveClause()
H A DASTWriter.cpp7815 void OMPClauseWriter::VisitOMPExclusiveClause(OMPExclusiveClause *C) { in VisitOMPExclusiveClause()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h11081 TreeTransform<Derived>::TransformOMPExclusiveClause(OMPExclusiveClause *C) { in TransformOMPExclusiveClause()
H A DSemaOpenMP.cpp22959 return OMPExclusiveClause::Create(getASTContext(), StartLoc, LParenLoc, in ActOnOpenMPExclusiveClause()