Home
last modified time | relevance | path

Searched refs:OMPFlushDirective (Results 1 – 15 of 15) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmtOpenMP.cpp707 OMPFlushDirective *OMPFlushDirective::Create(const ASTContext &C, in Create()
711 return createDirective<OMPFlushDirective>( in Create()
716 OMPFlushDirective *OMPFlushDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
719 return createEmptyDirective<OMPFlushDirective>(C, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp982 void StmtProfiler::VisitOMPFlushDirective(const OMPFlushDirective *S) { in VisitOMPFlushDirective()
H A DStmtPrinter.cpp759 void StmtPrinter::VisitOMPFlushDirective(OMPFlushDirective *Node) { in VisitOMPFlushDirective()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmtOpenMP.h2568 class OMPFlushDirective : public OMPExecutableDirective {
2576 OMPFlushDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPFlushDirective() function
2582 explicit OMPFlushDirective() in OMPFlushDirective() function
2595 static OMPFlushDirective *Create(const ASTContext &C, SourceLocation StartLoc,
2605 static OMPFlushDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h2884 DEF_TRAVERSE_STMT(OMPFlushDirective,
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DStmtNodes.td242 def OMPFlushDirective : StmtNode<OMPExecutableDirective>;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp2400 void ASTStmtReader::VisitOMPFlushDirective(OMPFlushDirective *D) { in VisitOMPFlushDirective()
3278 S = OMPFlushDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2365 void ASTStmtWriter::VisitOMPFlushDirective(OMPFlushDirective *D) { in VisitOMPFlushDirective()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmt.cpp260 EmitOMPFlushDirective(cast<OMPFlushDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3461 void EmitOMPFlushDirective(const OMPFlushDirective &S);
H A DCGStmtOpenMP.cpp4797 void CodeGenFunction::EmitOMPFlushDirective(const OMPFlushDirective &S) { in EmitOMPFlushDirective()
H A DCGOpenMPRuntime.cpp6559 if (isa<AsmStmt>(S) || isa<NullStmt>(S) || isa<OMPFlushDirective>(S) || in getSingleCompoundChild()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp2067 void VisitOMPFlushDirective(const OMPFlushDirective *D);
2972 void EnqueueVisitor::VisitOMPFlushDirective(const OMPFlushDirective *D) { in VisitOMPFlushDirective()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DTreeTransform.h8694 TreeTransform<Derived>::TransformOMPFlushDirective(OMPFlushDirective *D) { in TransformOMPFlushDirective()
H A DSemaOpenMP.cpp10228 return OMPFlushDirective::Create(Context, StartLoc, EndLoc, Clauses); in ActOnOpenMPFlushDirective()