Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/AST/
DOpenMPClause.cpp1397 OMPExclusiveClause *OMPExclusiveClause::Create(const ASTContext &C, in Create()
1404 new (Mem) OMPExclusiveClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
1409 OMPExclusiveClause *OMPExclusiveClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
1412 return new (Mem) OMPExclusiveClause(N); in CreateEmpty()
2083 void OMPClausePrinter::VisitOMPExclusiveClause(OMPExclusiveClause *Node) { in VisitOMPExclusiveClause()
DStmtProfile.cpp818 void OMPClauseProfiler::VisitOMPExclusiveClause(const OMPExclusiveClause *C) { in VisitOMPExclusiveClause()
/external/llvm-project/clang/include/clang/AST/
DOpenMPClause.h7459 class OMPExclusiveClause final
7460 : public OMPVarListClause<OMPExclusiveClause>,
7461 private llvm::TrailingObjects<OMPExclusiveClause, Expr *> {
7472 OMPExclusiveClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPExclusiveClause() function
7474 : OMPVarListClause<OMPExclusiveClause>(llvm::omp::OMPC_exclusive, in OMPExclusiveClause()
7480 explicit OMPExclusiveClause(unsigned N) in OMPExclusiveClause() function
7481 : OMPVarListClause<OMPExclusiveClause>(llvm::omp::OMPC_exclusive, in OMPExclusiveClause()
7493 static OMPExclusiveClause *Create(const ASTContext &C,
7502 static OMPExclusiveClause *CreateEmpty(const ASTContext &C, unsigned N);
7510 auto Children = const_cast<OMPExclusiveClause *>(this)->children(); in children()
DRecursiveASTVisitor.h3189 OMPExclusiveClause *C) {
/external/llvm-project/llvm/include/llvm/Frontend/OpenMP/
DOMP.td280 let clangClass = "OMPExclusiveClause";
DOMPKinds.def110 __OMP_CLAUSE(exclusive, OMPExclusiveClause)
/external/llvm-project/clang/lib/Serialization/
DASTReader.cpp12071 C = OMPExclusiveClause::CreateEmpty(Context, Record.readInt()); in readClause()
12975 void OMPClauseReader::VisitOMPExclusiveClause(OMPExclusiveClause *C) { in VisitOMPExclusiveClause()
DASTWriter.cpp6831 void OMPClauseWriter::VisitOMPExclusiveClause(OMPExclusiveClause *C) { in VisitOMPExclusiveClause()
/external/llvm-project/clang/tools/libclang/
DCIndex.cpp2328 void OMPClauseEnqueue::VisitOMPExclusiveClause(const OMPExclusiveClause *C) { in VisitOMPExclusiveClause()
/external/llvm-project/clang/lib/Sema/
DTreeTransform.h9860 TreeTransform<Derived>::TransformOMPExclusiveClause(OMPExclusiveClause *C) { in TransformOMPExclusiveClause()
DSemaOpenMP.cpp19255 return OMPExclusiveClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars); in ActOnOpenMPExclusiveClause()