Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DOpenMPClause.cpp397 OMPFlushClause *OMPFlushClause::Create(const ASTContext &C, in Create()
402 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPFlushClause), in Create()
405 OMPFlushClause *Clause = in Create()
406 new (Mem) OMPFlushClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create()
411 OMPFlushClause *OMPFlushClause::CreateEmpty(const ASTContext &C, unsigned N) { in CreateEmpty()
412 void *Mem = C.Allocate(llvm::RoundUpToAlignment(sizeof(OMPFlushClause), in CreateEmpty()
415 return new (Mem) OMPFlushClause(N); in CreateEmpty()
DStmtProfile.cpp447 void OMPClauseProfiler::VisitOMPFlushClause(const OMPFlushClause *C) { in VisitOMPFlushClause()
DStmtPrinter.cpp868 void OMPClausePrinter::VisitOMPFlushClause(OMPFlushClause *Node) { in VisitOMPFlushClause()
/external/clang/include/clang/AST/
DOpenMPClause.h2361 class OMPFlushClause : public OMPVarListClause<OMPFlushClause> {
2369 OMPFlushClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPFlushClause() function
2371 : OMPVarListClause<OMPFlushClause>(OMPC_flush, StartLoc, LParenLoc, in OMPFlushClause()
2378 explicit OMPFlushClause(unsigned N) in OMPFlushClause() function
2379 : OMPVarListClause<OMPFlushClause>(OMPC_flush, SourceLocation(), in OMPFlushClause()
2392 static OMPFlushClause *Create(const ASTContext &C, SourceLocation StartLoc,
2400 static OMPFlushClause *CreateEmpty(const ASTContext &C, unsigned N);
DRecursiveASTVisitor.h2717 bool RecursiveASTVisitor<Derived>::VisitOMPFlushClause(OMPFlushClause *C) {
/external/clang/include/clang/Basic/
DOpenMPKinds.def157 OPENMP_CLAUSE(flush, OMPFlushClause)
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1845 C = OMPFlushClause::CreateEmpty(Context, Record[Idx++]); in readClause()
2155 void OMPClauseReader::VisitOMPFlushClause(OMPFlushClause *C) { in VisitOMPFlushClause()
DASTWriterStmt.cpp1973 void OMPClauseWriter::VisitOMPFlushClause(OMPFlushClause *C) { in VisitOMPFlushClause()
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp2049 if (const auto *FlushClause = S.getSingleClause<OMPFlushClause>()) { in EmitOMPFlushDirective()
/external/clang/tools/libclang/
DCIndex.cpp2204 void OMPClauseEnqueue::VisitOMPFlushClause(const OMPFlushClause *C) { in VisitOMPFlushClause()
/external/clang/lib/Sema/
DSemaOpenMP.cpp7984 return OMPFlushClause::Create(Context, StartLoc, LParenLoc, EndLoc, VarList); in ActOnOpenMPFlushClause()
DTreeTransform.h7748 OMPClause *TreeTransform<Derived>::TransformOMPFlushClause(OMPFlushClause *C) { in TransformOMPFlushClause()