Searched refs:OMPExclusiveClause (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | OpenMPClause.cpp | 1544 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 D | StmtProfile.cpp | 906 void OMPClauseProfiler::VisitOMPExclusiveClause(const OMPExclusiveClause *C) { in VisitOMPExclusiveClause()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | OpenMPClause.h | 8437 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 D | RecursiveASTVisitor.h | 3570 OMPExclusiveClause *C) {
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
H A D | OMP.td | 152 let clangClass = "OMPExclusiveClause";
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReader.cpp | 10718 C = OMPExclusiveClause::CreateEmpty(Context, Record.readInt()); in readClause() 11791 void OMPClauseReader::VisitOMPExclusiveClause(OMPExclusiveClause *C) { in VisitOMPExclusiveClause()
|
H A D | ASTWriter.cpp | 7815 void OMPClauseWriter::VisitOMPExclusiveClause(OMPExclusiveClause *C) { in VisitOMPExclusiveClause()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | TreeTransform.h | 11081 TreeTransform<Derived>::TransformOMPExclusiveClause(OMPExclusiveClause *C) { in TransformOMPExclusiveClause()
|
H A D | SemaOpenMP.cpp | 22959 return OMPExclusiveClause::Create(getASTContext(), StartLoc, LParenLoc, in ActOnOpenMPExclusiveClause()
|