Home
last modified time | relevance | path

Searched refs:OMPFlushClause (Results 1 – 12 of 12) 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/clang/include/clang/Basic/
DOpenMPKinds.def209 OPENMP_CLAUSE(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/clang/lib/CodeGen/
DCGStmtOpenMP.cpp2612 if (const auto *FlushClause = S.getSingleClause<OMPFlushClause>()) { in EmitOMPFlushDirective()
/external/clang/tools/libclang/
DCIndex.cpp2258 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()