Searched refs:OMPFlushClause (Results 1 – 12 of 12) sorted by relevance
/external/clang/lib/AST/ |
D | OpenMPClause.cpp | 397 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()
|
D | StmtProfile.cpp | 447 void OMPClauseProfiler::VisitOMPFlushClause(const OMPFlushClause *C) { in VisitOMPFlushClause()
|
D | StmtPrinter.cpp | 868 void OMPClausePrinter::VisitOMPFlushClause(OMPFlushClause *Node) { in VisitOMPFlushClause()
|
/external/clang/include/clang/AST/ |
D | OpenMPClause.h | 2361 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);
|
D | RecursiveASTVisitor.h | 2717 bool RecursiveASTVisitor<Derived>::VisitOMPFlushClause(OMPFlushClause *C) {
|
/external/clang/include/clang/Basic/ |
D | OpenMPKinds.def | 157 OPENMP_CLAUSE(flush, OMPFlushClause)
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1845 C = OMPFlushClause::CreateEmpty(Context, Record[Idx++]); in readClause() 2155 void OMPClauseReader::VisitOMPFlushClause(OMPFlushClause *C) { in VisitOMPFlushClause()
|
D | ASTWriterStmt.cpp | 1973 void OMPClauseWriter::VisitOMPFlushClause(OMPFlushClause *C) { in VisitOMPFlushClause()
|
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 2049 if (const auto *FlushClause = S.getSingleClause<OMPFlushClause>()) { in EmitOMPFlushDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 2204 void OMPClauseEnqueue::VisitOMPFlushClause(const OMPFlushClause *C) { in VisitOMPFlushClause()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 7984 return OMPFlushClause::Create(Context, StartLoc, LParenLoc, EndLoc, VarList); in ActOnOpenMPFlushClause()
|
D | TreeTransform.h | 7748 OMPClause *TreeTransform<Derived>::TransformOMPFlushClause(OMPFlushClause *C) { in TransformOMPFlushClause()
|