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.cpp1563 OMPExclusiveClause *OMPExclusiveClause::Create(const ASTContext &C, in Create()
1570 new (Mem) OMPExclusiveClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
1575 OMPExclusiveClause *OMPExclusiveClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
1578 return new (Mem) OMPExclusiveClause(N); in CreateEmpty()
2667 void OMPClausePrinter::VisitOMPExclusiveClause(OMPExclusiveClause *Node) { in VisitOMPExclusiveClause()
H A DStmtProfile.cpp934 void OMPClauseProfiler::VisitOMPExclusiveClause(const OMPExclusiveClause *C) { in VisitOMPExclusiveClause()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h9023 class OMPExclusiveClause final
9024 : public OMPVarListClause<OMPExclusiveClause>,
9025 private llvm::TrailingObjects<OMPExclusiveClause, Expr *> {
9036 OMPExclusiveClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPExclusiveClause() function
9038 : OMPVarListClause<OMPExclusiveClause>(llvm::omp::OMPC_exclusive, in OMPExclusiveClause()
9044 explicit OMPExclusiveClause(unsigned N) in OMPExclusiveClause() function
9045 : OMPVarListClause<OMPExclusiveClause>(llvm::omp::OMPC_exclusive, in OMPExclusiveClause()
9057 static OMPExclusiveClause *Create(const ASTContext &C,
9066 static OMPExclusiveClause *CreateEmpty(const ASTContext &C, unsigned N);
9074 auto Children = const_cast<OMPExclusiveClause *>(this)->children(); in children()
H A DRecursiveASTVisitor.h3679 OMPExclusiveClause *C) {
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td185 let clangClass = "OMPExclusiveClause";
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp11383 C = OMPExclusiveClause::CreateEmpty(Context, Record.readInt()); in readClause()
12522 void OMPClauseReader::VisitOMPExclusiveClause(OMPExclusiveClause *C) { in VisitOMPExclusiveClause()
H A DASTWriter.cpp8540 void OMPClauseWriter::VisitOMPExclusiveClause(OMPExclusiveClause *C) { in VisitOMPExclusiveClause()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h11609 TreeTransform<Derived>::TransformOMPExclusiveClause(OMPExclusiveClause *C) { in TransformOMPExclusiveClause()
H A DSemaOpenMP.cpp23907 return OMPExclusiveClause::Create(getASTContext(), StartLoc, LParenLoc, in ActOnOpenMPExclusiveClause()