Home
last modified time | relevance | path

Searched refs:OMPFlushClause (Results 1 – 24 of 24) sorted by relevance

/external/clang/lib/AST/
DOpenMPClause.cpp504 OMPFlushClause *OMPFlushClause::Create(const ASTContext &C, in Create()
510 OMPFlushClause *Clause = in Create()
511 new (Mem) OMPFlushClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
516 OMPFlushClause *OMPFlushClause::CreateEmpty(const ASTContext &C, unsigned N) { in CreateEmpty()
518 return new (Mem) OMPFlushClause(N); in CreateEmpty()
DStmtProfile.cpp488 void OMPClauseProfiler::VisitOMPFlushClause(const OMPFlushClause *C) { in VisitOMPFlushClause()
DStmtPrinter.cpp880 void OMPClausePrinter::VisitOMPFlushClause(OMPFlushClause *Node) { in VisitOMPFlushClause()
/external/clang/include/clang/AST/
DOpenMPClause.h2514 class OMPFlushClause final
2515 : public OMPVarListClause<OMPFlushClause>,
2516 private llvm::TrailingObjects<OMPFlushClause, Expr *> {
2526 OMPFlushClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPFlushClause() function
2528 : OMPVarListClause<OMPFlushClause>(OMPC_flush, StartLoc, LParenLoc, in OMPFlushClause()
2535 explicit OMPFlushClause(unsigned N) in OMPFlushClause() function
2536 : OMPVarListClause<OMPFlushClause>(OMPC_flush, SourceLocation(), in OMPFlushClause()
2549 static OMPFlushClause *Create(const ASTContext &C, SourceLocation StartLoc,
2557 static OMPFlushClause *CreateEmpty(const ASTContext &C, unsigned N);
DRecursiveASTVisitor.h2868 bool RecursiveASTVisitor<Derived>::VisitOMPFlushClause(OMPFlushClause *C) {
/external/llvm-project/clang/lib/AST/
DOpenMPClause.cpp926 OMPFlushClause *OMPFlushClause::Create(const ASTContext &C, in Create()
932 OMPFlushClause *Clause = in Create()
933 new (Mem) OMPFlushClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
938 OMPFlushClause *OMPFlushClause::CreateEmpty(const ASTContext &C, unsigned N) { in CreateEmpty()
940 return new (Mem) OMPFlushClause(N); in CreateEmpty()
1918 void OMPClausePrinter::VisitOMPFlushClause(OMPFlushClause *Node) { in VisitOMPFlushClause()
DStmtProfile.cpp739 void OMPClauseProfiler::VisitOMPFlushClause(const OMPFlushClause *C) { in VisitOMPFlushClause()
/external/llvm-project/clang/include/clang/AST/
DOpenMPClause.h4263 class OMPFlushClause final
4264 : public OMPVarListClause<OMPFlushClause>,
4265 private llvm::TrailingObjects<OMPFlushClause, Expr *> {
4275 OMPFlushClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPFlushClause() function
4277 : OMPVarListClause<OMPFlushClause>(llvm::omp::OMPC_flush, StartLoc, in OMPFlushClause()
4283 explicit OMPFlushClause(unsigned N) in OMPFlushClause() function
4284 : OMPVarListClause<OMPFlushClause>(llvm::omp::OMPC_flush, in OMPFlushClause()
4296 static OMPFlushClause *Create(const ASTContext &C, SourceLocation StartLoc,
4304 static OMPFlushClause *CreateEmpty(const ASTContext &C, unsigned N);
4312 auto Children = const_cast<OMPFlushClause *>(this)->children(); in children()
DRecursiveASTVisitor.h3382 bool RecursiveASTVisitor<Derived>::VisitOMPFlushClause(OMPFlushClause *C) {
/external/clang/include/clang/Basic/
DOpenMPKinds.def209 OPENMP_CLAUSE(flush, OMPFlushClause)
/external/llvm-project/llvm/include/llvm/Frontend/OpenMP/
DOMP.td302 let clangClass = "OMPFlushClause";
DOMPKinds.def120 __OMP_IMPLICIT_CLAUSE_CLASS(flush, "flush", OMPFlushClause)
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1868 C = OMPFlushClause::CreateEmpty(Context, Record[Idx++]); in readClause()
2233 void OMPClauseReader::VisitOMPFlushClause(OMPFlushClause *C) { in VisitOMPFlushClause()
DASTWriterStmt.cpp2011 void OMPClauseWriter::VisitOMPFlushClause(OMPFlushClause *C) { in VisitOMPFlushClause()
/external/llvm-project/clang/lib/CodeGen/
DCGStmtOpenMP.cpp4376 llvm::AtomicOrdering AO = S.getSingleClause<OMPFlushClause>() in EmitOMPFlushDirective()
4382 if (const auto *FlushClause = S.getSingleClause<OMPFlushClause>()) in EmitOMPFlushDirective()
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp2612 if (const auto *FlushClause = S.getSingleClause<OMPFlushClause>()) { in EmitOMPFlushDirective()
/external/llvm-project/clang/lib/Sema/
DSemaOpenMP.cpp9404 OMPFlushClause *FC = nullptr; in ActOnOpenMPFlushDirective()
9408 FC = cast<OMPFlushClause>(C); in ActOnOpenMPFlushDirective()
16323 return OMPFlushClause::Create(Context, StartLoc, LParenLoc, EndLoc, VarList); in ActOnOpenMPFlushClause()
DTreeTransform.h9519 OMPClause *TreeTransform<Derived>::TransformOMPFlushClause(OMPFlushClause *C) { in TransformOMPFlushClause()
/external/llvm-project/clang/lib/Serialization/
DASTReader.cpp11969 C = OMPFlushClause::CreateEmpty(Context, Record.readInt()); in readClause()
12537 void OMPClauseReader::VisitOMPFlushClause(OMPFlushClause *C) { in VisitOMPFlushClause()
DASTWriter.cpp6547 void OMPClauseWriter::VisitOMPFlushClause(OMPFlushClause *C) { in VisitOMPFlushClause()
/external/clang/tools/libclang/
DCIndex.cpp2258 void OMPClauseEnqueue::VisitOMPFlushClause(const OMPFlushClause *C) { in VisitOMPFlushClause()
/external/llvm-project/clang/tools/libclang/
DCIndex.cpp2482 void OMPClauseEnqueue::VisitOMPFlushClause(const OMPFlushClause *C) { in VisitOMPFlushClause()
/external/clang/lib/Sema/
DSemaOpenMP.cpp10116 return OMPFlushClause::Create(Context, StartLoc, LParenLoc, EndLoc, VarList); in ActOnOpenMPFlushClause()
DTreeTransform.h7983 OMPClause *TreeTransform<Derived>::TransformOMPFlushClause(OMPFlushClause *C) { in TransformOMPFlushClause()